{% if title is not defined %}
{% for type, name, args, doc in sections %}
{% if type == 'text' %}
{% set title = name %}
{% include "_header.html" %}
{% break %}
{% endif %}
{% endfor %}
{% else %}
{% include "_header.html" %}
{% endif %}
{% for type, name, args, doc in sections %}
{% if type == 'text' %}
{{ doc }}
{% endif %}
{% endfor %}