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