{% import "_formhelpers.jinja2" as helper %} {# Title #} {% block title %}{% endblock %} - {{ config.APP_NAME }} {% block css %} {# CSS Styling #} {% assets "scss_all" %} {% endassets %} {% endblock %} {% block header %} {# Header / Navigation #} {% include 'header.html.j2' %} {% endblock %} {# Content #}
{# Text #}

{% block content_before %}{% endblock %}

{# Show any errors #} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
{% block content_override %}
{% block content %}{% endblock %}
{% endblock %}
{% block content_after %}{% endblock %}
{% block js %} {# JavaScript #} {% endblock %}