{% extends "base.html" %} {% load static wagtailcore_tags %} {% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %} {% block extra_css %} {% endblock %} {% block title %}Feeds{% endblock %} {% block content %}

{{ page.title }}

{% if page.intro %}

{{ page.intro|richtext }}

{% endif %}
    {% if feedentries.has_previous %}
  • {% endif %} {% for page_num in feedentries.paginator.page_range %}
  • {{ page_num }}
  • {% endfor %} {% if feedentries.has_next %}
  • {% endif %}
{% for entry in feedentries %}
{% if entry.visual %}
{% else %}
{% endif %}

{{ entry.title|striptags|truncatewords_html:10 }}

{{ entry.content|striptags|truncatewords_html:25 }} {{ entry.author }}

{% empty %} {% endfor %}
{% endblock %}