{% extends "base.html" %} {% load categories i18n %} {% block title %}{{ block.super }} - {% translate "Home" %}{% endblock %} {% block sidebar %} {% if tags %}
{% block tags %} {% translate "This week..." as title %} {% include "feeds/snippets/tag_cloud.html" %} {% endblock %}
{% endif %} {% endblock %} {% block main %}
{% for date, articles in object_groups.items %}
{{ date|date:"M" }}
{{ date|date:"j" }}
{% endfor %} {% block pagination %} {% include "feeds/snippets/pagination.html" with previous_page_title="Next Week" next_page_title="Previous Week"%} {% endblock %}
{% endblock %}