{% extends "base.html" %}
{% block title %}Publications{% endblock %}
{% block content %}
Publications
{% for key, year, text, bibtex, pdf, slides, poster in publications %}
- {{ text }}
[ Bibtex ]
{% for label, target in [('PDF', pdf), ('Slides', slides), ('Poster', poster)] %}
{{ "[ %s ]" % (target, label) if target }}
{% endfor %}
{% endfor %}
{% endblock %}