{% set site_name = "Cori+" %}
{{ site_name }}
{{ site_name }}
{% if not session.logged_in %}
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 %}