{% if title %}
{{ title }}
{% endif %}
{% for entry in components %} {% endfor %} {% block scripts %}{% endblock %} {% if show_navigation %}
{% for entry in navigation %}
{% with uri = entry.get('uri') %} {% with label = entry.get('label') %} {% if label %} {% if uri %}
{{ entry['label'] }}
{% else %}
{{ entry['label'] }}
{% endif %} {% else %}
{% endif %} {% endwith %} {% endwith %} {% with subentries = entry.get('entries') %} {% if subentries %}
{% for subentry in subentries %}
{{ subentry['label'] }}
{% endfor %}
{% endif %} {% endwith %}
{% endfor %}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
✕
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}