{% extends "base.html" %}
{% load wagtailcore_tags wagtailimages_tags roost_tags %}
{% block title %}{{ page.seo_title|default:page.title }}{% endblock %}
{% block meta %}
{% social_meta page.seo_meta %}
{% endblock %}
{% block content %}
{{ page.title }}
{% if page.intro %}{{ page.intro|richtext }}{% endif %}
{% for author in authors %}
-
{% if author.photo %}{% image author.photo fill-100x100 %}{% endif %}
{{ author.name }}
{% endfor %}
{% endblock %}