{% block meta %}{% endblock %}
{#
#} {#
#} {% block head_scripts %}{% endblock %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, flashed in messages %}
{{ flashed|safe }}
{% endfor %}
{% endif %} {% endwith %}
{% block nav %}
{% if g.user.is_authenticated %}
Welcome {{ current_user.email }} (
logout
)
{% if request.path != '/' %}
Home
{% endif %}
Your forms
{% if current_user.upgraded %}Your{% else %}Upgrade{% endif %} account
{% else %}
Try Formspree!
{% if request.path != '/' %}
Home
{% endif %} {% if request.path != '/login' %}
{{ config.UPGRADED_PLAN_NAME }} account login
{% endif %} {% endif %}
{% endblock %}
{% block base %}
Nothing to see here
{% endblock base %} {% block footer %}{% endblock %}
{% block tail_scripts %}{% endblock %}