{% 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 %}
{% endif %}
{% social_meta page.seo_meta %}
{% endblock %}
{% block extra_head %}
{% endblock %}
{% block content %}
{{ page.title }}
{% if page.intro %}{{ page.intro|richtext }}{% endif %}
RSS
{% if sections %}
{% endif %}
{% for article in articles %}
{% include "roost/includes/_article_card.html" %}
{% endfor %}
{% endblock %}