{% extends "planet/base.html" %} {% load i18n pagination_tags tagging_tags planet_tags %} {% load url from future %} {% block head_title %}{% trans "Feed" %}: {{ feed.title }}{% endblock %} {% block extra_head %} {% endblock %} {% block breadcrumb_section %}
  • Blogs /
  • {{ feed.blog.title }} /
  • {% if tag %}
  • Feed: {{ feed.title }} /
  • {% endif %} {% endblock %} {% block breadcrumb_detail %} {% if tag %}
  • Tag: {{ tag.name }}
  • {% else %}
  • Feed: {{ feed.title }}
  • {% endif %} {% endblock %} {% block content %} {% if feed.icon %} {% trans 'Feed icon' %} {% endif %}

    {% trans "Feed" %}: {{ feed.title }}

    {% if feed.subtitle %}

    {{ feed.subtitle|striptags }}

    {% endif %} {% if not tag %}
    {% trans 'Blog' %} {{ feed.blog.title }}
    {% trans 'RSS 2.0 Feed' %} {{ feed.title }}
    {% trans 'web' %}{{ feed.blog.url }}
    {% trans 'Last Update' %}{{ feed.last_checked|date:"m.d.Y" }}
    {% trans 'Posts' %}{{ feed.post_set.count }}
    {% endif %} {% if tag %}

    {% trans 'Posts under tag' %}: {{ tag }}

    {% endif %} {% autopaginate posts 20 %} {% for post in posts %}
    {% post_details post "planet/posts/short.html" %}
    {% endfor %} {% paginate %} {% endblock %} {% block right_column %} {# this is too slow % authors_for_feed feed %#} {% include 'planet/feeds/blocks/syndication_block.html' %} {% if tag %}
    {% related_tags_for tag %}
    {% feeds_about tag %}
    {% endif %} {% cloud_for_feed feed %} {% endblock %}