{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block body_class %}helvetica{% endblock %} {% block content %} {% include 'header.html' %}
{% if request.GET.tag|length %}

Showing pages tagged "{{ request.GET.tag }}"

{% endif %} {% 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 %} {% empty %} No pages found with that tag. {% endfor %}
{% endblock %}