{{ site_name }}
{% if current_user.is_anonymous %}
log in
register
{% else %}
{{ current_user.username }}
{% set notification_count = current_user.unseen_notification_count() %} {% if notification_count > 0 %}
(
{{ notification_count }}
)
{% endif %} -
explore
create
log out
{% endif %}
{% for message in get_flashed_messages() %}
{{ message }}
{% endfor %} {% block body %}{% endblock %}