{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags wagtailroutablepage_tags roost_tags %} {% block title %}{{ page.seo_title|default:page.title }}{% endblock %} {% block meta %} {% if page.search_description or page.lead %} {% endif %} {% social_meta page.seo_meta %} {% endblock %} {% block extra_head %} {% include "roost/includes/_json_ld.html" %} {% endblock %} {% block content %}

{{ page.title }}

{% if page.lead %}

{{ page.lead }}

{% endif %}

{% for author in page.authors %} {% if not forloop.first %}, {% endif %} {% if author.profile_url %}{% else %}{{ author.name }}{% endif %} {% endfor %}

{% if page.image %}{% image page.image width-1200 %}{% endif %}
{% include_block page.body %} {% if page.tags.all and news_index %} {% endif %} {% with related=page.live_related_articles %} {% if related %} {% endif %} {% endwith %}
{% endblock %}