{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %}

{{ page.title }}

{% if page.intro %}
{{ page.intro|richtext }}
{% endif %}
{% for post in page.get_children.live.specific %}
{% if post.feed_image %} {% image post.feed_image fill-800x400 as img %} {{ img.alt }} {% endif %}

{{ post.title }}

{% if post.published_date %} {% endif %} {% if post.authors.first %}

by {{ post.authors.first.name }}

{% endif %}
{% endfor %}
{% endblock %}