{% extends "base.html" %} {% block title %}{{ site.title }}{% endblock %} {% block container %}
{{ site.title }}
{% if site.index %} {{ page.content }} {% else %} {% for category_name, pages in site.structure.iteritems() %} {# Only list second-level directory #} {% if site.default_ext not in category_name %}

{{ category_name }}

{% endif %}
{% endfor %} {% endif %} {% endblock %}