Add publications template

This commit is contained in:
Andre Anjos 2017-05-07 17:12:04 +02:00
parent 1b845a3db7
commit b4b302c207
2 changed files with 43 additions and 24 deletions

4
.gitignore vendored
View file

@ -57,3 +57,7 @@ venv
# NPM # NPM
node_modules node_modules
# Vim
*~
*.swp

View file

@ -1,7 +1,9 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Publications{% endblock %}
{% block content %}
{% block title %} – Publications{% endblock %}
{% block meta %}
{{ super() }}
<script type="text/javascript"> <script type="text/javascript">
function disp(s) { function disp(s) {
var win; var win;
@ -13,8 +15,18 @@ function disp(s) {
doc.close(); doc.close();
} }
</script> </script>
<section id="content" class="body"> {% endblock %}
<h1 class="entry-title">Publications</h1>
{% block content %}
<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> <ul>
{% for key, year, text, bibtex, pdf, slides, poster in publications %} {% for key, year, text, bibtex, pdf, slides, poster in publications %}
<li id="{{ key }}">{{ text }} <li id="{{ key }}">{{ text }}
@ -25,5 +37,8 @@ function disp(s) {
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
</section> {% block after_content %}{% endblock %}
</div>
</article>
{% endblock %} {% endblock %}