{% block head_extra %}{% endblock %}
{{ site_name }}
{% for item in nav_items %}
{{ item.label }}
{% if item.children %}
{% for child in item.children %}
{{ child.label }}
{% endfor %}
{% endif %}
{% endfor %}
{% if user %}
Welcome, {{ user.name }}
Logout
{% else %}
Login
Sign Up
{% endif %}
{% block content %}{% endblock %}
{% block scripts %}{% endblock %}