{% block css %}
{% endblock %}
{% block navigation %} {%- from "macros.html" import topnav with context -%}
Toggle navigation
FlaskBB
{# 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') }}
{% if current_user and current_user.is_authenticated() %}
{{ current_user.username }}
Topic Tracker
Settings
{% if current_user.permissions['admin'] %}
Admin Panel
{% endif %}
Logout
{{ current_user.pm_unread }}
Inbox
New Message
{% else %}
Login
Register
Reset Password
{% endif %}
{% endblock %}
{% block messages %} {% include 'flashed_messages.html' %} {% endblock %} {% block content %} {% endblock %}
{% block footer %} {% endblock %} {% block javascript %} {% endblock %}