{% extends "base.html" %} {% load static wagtailimages_tags wagtailcore_tags %} {% block content %}
{% if tag %} {% if page.image %} {% image page.image width-1000 as photo %}
{% endif %}

{{ page.title }}

Posts tagged with #{{ tag }}
{% else %} {% include "common/content.html" %} {% endif %} {% if page.body %}
{% endif %} {% for child in blogs %} {% ifchanged %}

{% endifchanged %}
{% if child.image %} {% image child.image width-300 as photo %}
{% endif %}
{{ child.title }}
{% include "common/content-details.html" with page=child %}

{{ child.get_short_body }}

{% endfor %}
{% endblock %}