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

{{ page.title }}

{% for post in blogpages %} {% with post=post.specific %}

{{ post.title }}

{{ post.intro }}

{% with post.main_image as main_image %} {% if main_image %}{% image main_image fill-320x240 class="db" %}{% endif %} {% endwith %}

By {{ post.owner }}

{% endwith %} {% endfor %}
{% endblock %}