{% extends "base.html" %}{% load i18n st_core %}
{% block title %}{% trans "Archive" %}{% endblock %}
{% block extra_head %}
{% get_current_language as LANGUAGE_CODE %}
{% endblock %}
{% block body_class %}blog{% endblock %}
{% block content %}
{% regroup object_list by pubdate|date:"Y" as year_posts %}
{% for year in year_posts %}
{{ year.grouper }}
{% for post in year.list %}
- {{ post.pubdate|date:"b d" }}, {{LANGUAGE_MARKER}}{{ post.title }}
{% endfor %}
{% endfor %}
{% endblock %}