{% extends 'bootstrap/base.html' %}
{% block title %}
{% if title %}{{ title }} - Porchfest{% else %}Welcome to the site!{% endif %}
{% endblock %}
{% block navbar %}
{% endblock %}
{% block content %}
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{# application content needs to be provided in the app_content block #}
{% block app_content %}
{% endblock %}