{% block css %}
{% endblock %}
{% block navigation %} {%- from theme("macros.html") import topnav with context -%}
Toggle navigation
FlaskBB
{{ emit_event("before-first-navigation-element") }} {# active_forum_nav is set in {forum, category, topic}.html and new_{topic, post}.html #} {{ topnav(endpoint='forum.index', name=_('Forum'), icon='fa fa-comment', active=active_forum_nav) }} {{ topnav(endpoint='forum.memberlist', name=_('Memberlist'), icon='fa fa-user') }} {{ topnav(endpoint='forum.search', name=_('Search'), icon='fa fa-search') }} {{ emit_event("after-last-navigation-element") }}
{% if current_user and current_user.is_authenticated() %}
{{ current_user.username }}
{% trans %}Topic Tracker{% endtrans %}
{% trans %}Settings{% endtrans %}
{% if current_user|is_admin_or_moderator %}
{% trans %}Management{% endtrans %}
{% endif %}
{% trans %}Logout{% endtrans %}
{{ current_user.pm_unread }}
{% trans %}Inbox{% endtrans %}
{% trans %}New Message{% endtrans %}
{% else %}
{% trans %}Login{% endtrans %}
{% trans %}Register{% endtrans %}
{% trans %}Reset Password{% endtrans %}
{% endif %}
{% endblock %}
{% block messages %} {% include theme('flashed_messages.html') %} {% endblock %} {% block content %} {% endblock %}
{% block footer %} {% endblock %} {% block javascript %} {% endblock %} {% block scripts %} {% endblock %}