{% from 'macros.html' import print_message with context %}
{% block head %}
{% block title %}CritiqueBrainz{% endblock %}
{% endblock %}
{% block scripts_top %}
{# This needs to be before body because it's used during cover art loading. #}
{% endblock %}
{% include 'navbar.html' %}
{% block wrapper %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ print_message(message, category) }}
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}
{% endblock %}
{% endblock %}
{% include 'footer.html' %}