{% extends host_template %} {% load comments i18n cyclope_utils %} {% block content %} {% alias feed as 'current_object' %}

{% trans feed.name %}

{% include 'cyclope/content_tools_block.html' %} {% if feed.summary %}
{{ feed.summary|smart_style }}
{% endif%} {% for entry in entries %}

{{ entry.title }}

{% if not view_options.titles_only %} {% if entry.summary_detail.type == 'text/html' %} {{ entry.summary_detail.value|safe }} {% else %} {{ entry.summary_detail.value }} {% endif %} {% endif %}
{% endfor %}
{% include 'collections/categories_navigation_block.html' %}
{% include 'cyclope/related_contents_block.html' %}
{% include 'comments/comments_block.html' %}
{% endblock content%}