Add publications template
This commit is contained in:
parent
1b845a3db7
commit
b4b302c207
2 changed files with 43 additions and 24 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -57,3 +57,7 @@ venv
|
|||
|
||||
# NPM
|
||||
node_modules
|
||||
|
||||
# Vim
|
||||
*~
|
||||
*.swp
|
||||
|
|
|
@ -1,29 +1,44 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}Publications{% endblock %}
|
||||
|
||||
{% 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 %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<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>
|
||||
<section id="content" class="body">
|
||||
<h1 class="entry-title">Publications</h1>
|
||||
<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 }}
|
||||
<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 }}
|
||||
[ <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>
|
||||
{% endfor %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
</ul>
|
||||
{% block after_content %}{% endblock %}
|
||||
</div>
|
||||
</article>
|
||||
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue