{% extends "index.html" %} {% import 'html_macros.html' as html_macros %} {% block head %} {{ super() }} {{ html_macros.get_meta(categories) }} {% endblock head %} {% block titlename %}{{'all the categories'|capitalize}}{% endblock titlename %} {% block content %} {% block heading %}

{{'all the categories'|capitalize}}

{% for category, articles in categories %}

{{ category | capitalize}}

{% endfor %} {% endblock heading %} {% endblock content %}