{% extends "base.html" %} {% load tagging_tags %} {% block title %}{{ SITE_TAGLINE }}{% endblock %} {% block extra_head %}{% endblock %} {% block content %}
{% include "_blog_list.html" with posts=paginator.current_list %}
{% include "_paginator.html" %}
{% endblock %} {% block side %}

Tags

{% for tag, count in post_tags %}
{{tag.name}} ({{count}})
{% endfor %}
{% endblock %}