{% block header %}
{% block nav-items %}
Back to Calculations
{% endblock nav-items %} {% if app_list %} {# Take the first app in STANDALONE_APPS as landing page for tools #}
Tools
{% endif %} {% if user.is_superuser %}
Admin
{% endif %}
{% if user.is_authenticated %}
Hello,
{{ user.username }}
|
logout
{% endif %}
{% if application_mode == 'AELO' %}
{% else %}
{% endif %}
{% endblock header %} {% block main %} {% if announcements %}
{% for announcement in announcements %} {% if announcement.show %}
{{ announcement.title }}
{{ announcement.content }}
{% endif %} {% endfor %}
{% endif %} {% endblock main %}
{% block footer %} {% include "./includes/footer.html" %} {% endblock footer %} {% block scripts %} {% endblock scripts %} {% block templates %} {% endblock templates %} {% block extra_script %} {% endblock extra_script %}