{% block head %} {% block title %}{% endblock %} {% endblock %}
{# These are in a
tag because it's not relevant to the page. #} {# It's nice to easily have flashed messages in every page. #} {% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %} {% for category, message in messages %}

{{ message }}

{% endfor %} {% endif %}
{% endwith %}

{% block content %}{% endblock %}