{% extends "wheelcms_axle/content_base.html" %} {% load fragments %} {% load staticfiles %} {% block base_stylesheets %} {{block.super}} {% endblock %} {% block content_main %} {% for child in page.object_list %} {% with content=child.content %}

{{content.title}} {% if not global_context and forloop.first %}
{% endif %}

{{content.body|safe|truncatewords_html:40}}
Continue reading
{% endwith %} {% endfor %} {% include "two.bootstrap/pagination.html" %} {% endblock %} {% block fragments %} {{block.super}} {% fragment "head" %} {% if global_context %} {% for blog in all_blogs %} {% include "wheelcms_rss/feedlinks.html" with feedcontext=blog %} {% endfor %} {% else %} {% include "wheelcms_rss/feedlinks.html" with feedcontext=instance.content %} {% endif %} {% endfragment %} {% endblock %}