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