{% extends 'bootstrap/base.html' %} {% block head %} {{super()}} {% endblock %} {%block scripts%} {{super()}} {% endblock %} {% block styles %} {% endblock %} {% block title %} {% if title %} {{ title }} - CodeRx {% else %} Welcome to CodeRx {% endif %} {% 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 %}