{% extends "index.html" %} {% block title %} Categories – {{ SITENAME }} {% endblock title %} {% block header %}

Categories in {{ SITENAME }}

{% if ADD_THIS_ID and (page_name or page or article) %}
{% endif %}
{% endblock header %} {% block add_this %} {# remove ADD_THIS in content, move to above header #} {% endblock add_this %} {% block content %}
{% for category, articles in categories|sort %}

{% for article in articles %}
{{ article.title }}
by {{ article.author }}, post on {{ article.locale_date }}
{% endfor %}
{% endfor %}
{% if GOOGLE_ADSENSE and GOOGLE_ADSENSE.ads.page %} {% endif %} {% endblock content %}