{% block title %}
{% if page.seo_title %}{{ page.seo_title }}{% else %}{{ page.title }}{% endif %}
{% endblock %}
{% block title_suffix %}
{% wagtail_site as current_site %}
{% if current_site and current_site.site_name %}- {{ current_site.site_name }}{% endif %}
{% endblock %}
{% if page.search_description %}
{% endif %}
{# Force all links in the live preview panel to be opened in a new tab #}
{% if request.in_preview_panel %}
{% endif %}
{# Global stylesheets #}
{% block extra_css %}
{# Override this in templates to add extra stylesheets #}
{% endblock %}
{% wagtailuserbar %}
{% if navbar_position == 'top' %}
{% with size=12 %}
{% include 'includes/menu_block.html' %}
{% endwith %}
{% endif %}
{% if navbar_position == 'left' %}
{% with size=3 %}
{% include 'includes/menu_block.html' %}
{% endwith %}
{% endif %}
{% for message in messages %}
{{message}}
{% endfor %}
{% block content %}{% endblock %}
{% if navbar_position == 'right' %}
{% with size=3 %}
{% include 'includes/menu_block.html' %}
{% endwith %}
{% endif %}