{% extends "blog/base_blog.html" %}
{% load cache i18n %}
{% block body_class %}{{ block.super }} category_detail{% endblock %}
{% block body_id %}category_{{ category.id }}{% endblock %}
{% block content %}
{% trans "Posts for" %} {{ day|date:"F jS, Y" }}
{% for post in object_list %}
{% include "blog/includes/post_list.html" %}
{% endfor %}
{% endblock %}