{% extends "main::container.html" %} {% macro header_passage() %}

{{collections.current.title}}

{{collections.current.author}}

{{collections.current.label}}, {{collections.current.description}}

{% endmacro %} {% macro nav() %} {% if prev %} {% endif %} {% if next %} {% endif %} {% endmacro %} {% macro default_footer() %} {% include "main::passage_footer.html" %} {% endmacro %} {% macro show_passage(text, header, navigation, footer) %}
{{ header }}
{% if cache_active %} {% cache cache_time, cache_key %}{{ text_passage }} {% endcache %} {% else %} {{ text_passage }} {% endif %}
{% endmacro %} {% block article %} {{ show_passage(text_passage, navigation=nav(), header=header_passage(), footer=default_footer()) }} {% endblock %} {% block metadata %} {% endblock %}