{% load wagtailcore_tags wagtailimages_tags %} {% if page.heading and page.image %}
{% image page.image original %}

{{ page.heading }}

{{ page.description }}
{% endif %} {% for post in posts %}
{% if post.image_url %} {{ post.title }} {% endif %}

{{ post.title }}

{% if post.intro %}

{{ post.intro|truncatewords:30 }}

{% endif %}
{% if post.owner.wagtail_userprofile.avatar.url %} Avatar {% endif %}

{{ post.author_name }}

{{ post.date }} {{ post.readtime }}

{% if not forloop.last %}
{% endif %} {% endfor %}