{% extends "base.html" %} {% block title %} – Publications{% endblock %} {% block content %}
{% block content_header %}

Publications

{% import 'translations.html' as translations with context %} {{ translations.translations_for(publications) }}
{% endblock %} {% block before_content %} {% endblock %} {% block content_pybtex %}
{% for group in publications|groupby(attribute="year")|reverse %}

{{ group.grouper }}

{% for item in group.list|sort(attribute="month")|reverse %}
{{ item.html }} {{ item.bibtex }}
{% endfor %} {% endfor %}
{% endblock %} {% block content_footer %} {% endblock %}
{% endblock %}