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