{% load i18n %} {% load tz %} {% block extra_head %} {% endblock %} {% block title %} {{BLOG_TITLE}} {% endblock %} {% block body %} {% block navbar %} {% endblock %}
{% if messages %} {% for message in messages %}
{{message.tags}}! {{ message }}
{% endfor %} {% endif %}
{% block content %} {% endblock %}
{% block sidebar %} {% if popular_posts %}

{% trans 'Popular Posts' %}

{% for p in popular_posts %}

{{p.title}} ({{p.comment_count}})

{% endfor %} {% endif %} {% if recent_posts %}

{% trans 'Recent Posts' %}

{% for p in recent_posts %}

{{p.title}}

{% endfor %} {% endif %} {% if archive %}

{% trans 'Archive' %}

{% localtime off %} {% for date in archive %}

{{date|date:"M Y"}} {{date|date:"Y"}}

{% endfor %} {% endlocaltime %} {% endif %} {% if authors %}

{% trans 'Authors' %}

{% for a in authors %}

{{a}} ({{a.post_set.all.count}})

{% endfor %} {% endif %} {% if tags %}

{% trans 'Tags' %}

{% for t in tags %}

{{t.name}} ({{t.taggit_taggeditem_items.count}})

{% endfor %} {% endif %} {% endblock %}
{% endblock %}