{# -*- engine: jinja -*- #} {% extends "base.html" %} {% block summary %}
{% include "directory_page.summary.html" | indent(2) %}
{% endblock %} {% block content %} {% if info.single_page == "js-enabled" %}
{# If javascript is enabled this details content is moved one level up and the details is removed #} Overall list of functions

{% endif %} {% for directory in directories %}
{% set entries = directory.entries %} {% include "directory_page.content.html" | indent(2) %}
{% endfor %} {% for file in files %}

{% include "source_page.content.html" | indent(2) %} {% if not loop.last %}
{% endif %}
{% endfor %} {% if info.single_page == "js-enabled" %} {% endif %} {% endblock %}