{% extends "base.html" %} {% load wagtailcore_tags %} {% block page %}{% endblock page %} {% block inner %} {% if request.GET.tag %}

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

{% endif %} {% for content_item in tagged_items %}

{{ content_item.title }}
Revised: {{ content_item.latest_revision_created_at }}
{% if content_item.author %}

By {{ content_item.author.name }}

{% endif %}

{% empty %} No pages found with that tag. {% endfor %} {% endblock inner %}