{% load tz %} {% block extra_head %} {% endblock %} {% block title %} {% endblock %} {% block body %} {% block navbar %} {% endblock %}
{% block content %} {% endblock %}
{% block sidebar %}
{% if popular_posts %}

Popular Posts

{% for p in popular_posts %}

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

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

Recent Posts

{% for p in recent_posts %}

{{p.title}}

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

Archive

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

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

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

Authors

{% for a in authors %}

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

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

Tags

{% for t in tags %}

{{t.name}} ({{t.post_set.all.count}})

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