{% extends "base.html" %} {% block title %} All Categories - {{ super() }} {% endblock title %} {% block content %}
{% for category, articles in categories %}
    {% for article in articles %} {% set day = article.date.strftime('%d')|int %}
  • {{ article.date.strftime('%b') }} {{ day }}{{ article.date.strftime(', %Y') }} {{ article.title }}
  • {% endfor %}
{% endfor %}
{% endblock content %}