{% extends "base.html" %} {% load wagtailcore_tags %} {% block content %}
{# Blog Entries Column #}
{% if request.GET.tag|length %}

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

{% for post in blogpages %} {% with post=post.specific %} {# Blog Post #}

{{ post.title }}

{{ post.intro }}

{% endwith %} {% endfor %} {% else %}

No pages with tag {{request.GET.tag }} available

{% endif %}

Return to previous page

{# Sidebar Widgets Column #}
{% include "search.html" %}
{% endblock %}