{% extends 'bootstrap/base.html' %} {% block title %} {% if title %}{{ title }}{% else %}No page title{% endif %} {% endblock %} {% block navbar %}
{{ nav.top_menubar.render() }}
{% endblock %} {% block content %}
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% endwith %} {# application content needs to be provided in the app_content block #} {% block app_content %}{% endblock %}
{% endblock %}