{% extends "base.html" %} {% block content_title %} {{ SITENAME }} * {% endblock %} {% block content %} {% for category, articles in categories %} {% if category.name == 'notes' %} {% for article in articles %}
{{ article.title }}
{{ article.content }}
{% if not HIDE_DATE %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% endblock %}