Order publications by year
This commit is contained in:
parent
3fbf3a5303
commit
4705112229
1 changed files with 11 additions and 8 deletions
|
@ -27,16 +27,19 @@
|
|||
</header>
|
||||
<div>
|
||||
{% block before_content %}{% endblock %}
|
||||
<ul>
|
||||
{% for key, year, text, bibtex, pdf, slides, poster in publications %}
|
||||
<li id="{{ key }}">{{ text }}
|
||||
[ <a href="javascript:disp('{{ bibtex|replace('\n', '\\n')|escape|forceescape }}');">Bibtex</a> ]
|
||||
{% for label, target in [('PDF', pdf), ('Slides', slides), ('Poster', poster)] %}
|
||||
{{ "[ <a href=\"%s\">%s</a> ]" % (target, label) if target }}
|
||||
{% for group in publications|groupby(1)|reverse %}
|
||||
<h3 id="{{ group.grouper }}">{{ group.grouper }}</h3>
|
||||
<ul>
|
||||
{% for key, year, text, bibtex, pdf, slides, poster in group.list %}
|
||||
<li id="{{ key }}">{{ text }}
|
||||
[ <a href="javascript:disp('{{ bibtex|replace('\n', '\\n')|escape|forceescape }}');">Bibtex</a> ]
|
||||
{% for label, target in [('PDF', pdf), ('Slides', slides), ('Poster', poster)] %}
|
||||
{{ "[ <a href=\"%s\">%s</a> ]" % (target, label) if target }}
|
||||
{% endfor %}
|
||||
</li>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% block after_content %}{% endblock %}
|
||||
</div>
|
||||
</article>
|
||||
|
|
Loading…
Reference in a new issue