{% load blog_tags i18n %} {% blog_recent_posts 5 as recent_posts %} {% if recent_posts %}

{% trans "Recent Posts" %}

{% for recent_post in recent_posts %}
  • {{ recent_post.title }}
  • {% endfor %} {% endif %} {% blog_months as months %} {% if months %}

    {% trans "Archive" %}

    {% for month in months %} {% ifchanged month.year %}

    {{ month.year }}

    {% endif %} {% blog_categories as categories %} {% if categories %}

    {% trans "Categories" %}

    {% endif %} {% blog_tags as tags %} {% if tags %}

    {% trans "Tags" %}

    {% endif %} {% blog_authors as authors %} {% if authors %}

    {% trans "Authors" %}

    {% for author in authors %} {{ author.get_full_name|default:author.username }} {% endfor %} {% endif %}

    {% trans "Feeds" %}

    {% trans "RSS" %} / {% trans "Atom" %}