{% load wagtailimages_tags wagtailcore_tags %}

{{ self.headline }}

{% for blog in blogs %}

{{ blog.title }}

{% if blog.image %} {% image blog.image max-256x256 %} {% endif %}

By {{ blog.author.first_name }} {{ blog.author.last_name }} | { blog.date|date:"n/j/y" }}

{% include 'fragments/tags.html' with blog_post=blog %}
{{ blog.content|richtext|truncatewords_html:110 }} Read more...
{% endfor %} {% include 'fragments/paginator.html' %}
{% endblock %}