Order publications by year

This commit is contained in:
Andre Anjos 2017-05-07 18:32:40 +02:00
parent 3fbf3a5303
commit 4705112229

View file

@ -27,8 +27,10 @@
</header>
<div>
{% block before_content %}{% endblock %}
{% for group in publications|groupby(1)|reverse %}
<h3 id="{{ group.grouper }}">{{ group.grouper }}</h3>
<ul>
{% for key, year, text, bibtex, pdf, slides, poster in publications %}
{% for key, year, text, bibtex, pdf, slides, poster in group.list %}
<li id="{{ key }}">{{ text }}
[&nbsp;<a href="javascript:disp('{{ bibtex|replace('\n', '\\n')|escape|forceescape }}');">Bibtex</a>&nbsp;]
{% for label, target in [('PDF', pdf), ('Slides', slides), ('Poster', poster)] %}
@ -37,6 +39,7 @@
</li>
{% endfor %}
</ul>
{% endfor %}
{% block after_content %}{% endblock %}
</div>
</article>