{% extends "planet/base.html" %} {% load i18n pagination_tags planet_tags %} {% block head_title %}{% trans "Blog" %}: {{ blog.title }} - {% trans 'Posts in' %} {{ block.super }}{% endblock %} {% block extra_head %} {% endblock %} {% block breadcrumb_section %}
  • Blogs /
  • {% endblock %} {% block breadcrumb_detail %}
  • {{ blog.title }}
  • {% endblock %} {% block content %}

    {% trans "Blog" %}: {{ blog.title }}

    {% for feed in blog.feed_set.all %} {% endfor %}
    {% trans 'web' %}{{ blog.url }}
    {% trans 'feed' %}{{ feed.title }}
    {% if tag %}

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

    {% endif %} {% autopaginate posts 20 %} {% for post in posts %}
    {% post_details post %}
    {% endfor %} {% if tag %}

    {% trans 'Other blogs talking about ' %} {{ tag }}

    {% endif %} {% paginate %} {% endblock %} {% block right_column %} {% cloud_for_blog blog %} {% include 'planet/feeds/blocks/syndication_block.html' %} {% endblock %}