{% extends "blog/base_blog.html" %} {% load cache i18n %} {% block title %}{% trans "Posts for" %} {{ tag.name }} | {{ block.super }}{% endblock %} {% block body_class %}{{ block.super }} tag_detail{% endblock %} {% block body_id %}tag_{{ tag.id }}{% endblock %} {% block content %}

{% trans "Posts tagged:" %} {{ tag.name }}

{% cache 3600 "blog.tag_detail.object_list" tag.name %} {% for post in object_list %} {% include "blog/includes/post_list.html" %} {% endfor %} {% endcache %}
{% endblock %}