diff --git a/theme/templates/index.html b/theme/templates/index.html index 46bceb7..253cf59 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -41,31 +41,23 @@ - {% for category, articles in categories %} + {% for article in articles %} - {% if category.name == 'notes' %} +
+ + {{ article.title }} + +
- {% for article in articles %} +
+ {{ article.content }} +
-
- - {{ article.title }} - -
- -
- {{ article.content }} -
- - {% if not HIDE_DATE %} - - {% endif %} - - {% endfor %} - - {% endif %} + {% if not HIDE_DATE %} + + {% endif %} {% endfor %}