{% extends "bootstrap_global.html" %} {% block title %} {% if title %} {{ title }} - Scout {% else %} Welcome to Scout {% endif %} {% endblock title %} {% block styles %} {{ super() }} {% endblock %} {% block head %} {{ super() }} {% endblock head %} {% block navbar %} {% endblock %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {# application content needs to be provided in the content_main block #} {% block content_main %}{% endblock %}
{% endblock %}