flex/templates/publications.html

45 lines
1.2 KiB
HTML
Raw Normal View History

2017-05-07 17:01:05 +02:00
{% extends "base.html" %}
2017-05-07 17:12:04 +02:00
{% block title %} – Publications{% endblock %}
{% block meta %}
{{ super() }}
<script type="text/javascript">
function disp(s) {
var win;
var doc;
win = window.open("", "WINDOWID");
doc = win.document;
doc.open("text/plain");
doc.write("<pre>" + s + "</pre>");
doc.close();
}
</script>
{% endblock %}
2017-05-07 17:01:05 +02:00
{% block content %}
2017-05-07 17:12:04 +02:00
<article class="single">
<header>
{% import 'partial/translations.html' as translations with context %}
{{ translations.translations_for(publications) }}
<h1 id="publications">Publications</h1>
</header>
<div>
{% block before_content %}{% endblock %}
<ul>
{% for key, year, text, bibtex, pdf, slides, poster in publications %}
<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)] %}
{{ "[&nbsp;<a href=\"%s\">%s</a>&nbsp;]" % (target, label) if target }}
{% endfor %}
</li>
2017-05-07 17:01:05 +02:00
{% endfor %}
2017-05-07 17:12:04 +02:00
</ul>
{% block after_content %}{% endblock %}
</div>
</article>
2017-05-07 17:01:05 +02:00
{% endblock %}