{{ t('app.title') }}
{% if current_user.is_authenticated %}
{{ t('nav.calc') }}
{{ t('nav.settings') }}
{{ current_user.username }}
{{ t('nav.logout') }}
{{ version.commit_short }}{% if version.deployed %} · {{ version.deployed }}{% endif %}
{% endif %}
{% for code, name in languages %}
{{ code|upper }}
{{ ' · ' if not loop.last }} {% endfor %}
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, msg in messages %}
{{ msg }}
{% endfor %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}