2020-12-11 16:54:09 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block main %}
|
2020-12-21 18:41:55 +01:00
|
|
|
<div id="nav" class="container">
|
|
|
|
{% include 'menu.html' %}
|
|
|
|
</div>
|
|
|
|
<div id="main">
|
2020-12-11 18:12:52 +01:00
|
|
|
<ul>
|
2020-12-21 18:41:55 +01:00
|
|
|
{% for id, pubinfo in publications.items() %}
|
2020-12-21 19:26:12 +01:00
|
|
|
<li class='filter {{ pubinfo["Type"] }} {{ pubinfo["Year"] }}'><a href='{{ id }}'>{{ pubinfo["Author"] }} - {{ pubinfo["Title"] }}</a></li>
|
2020-12-11 16:54:09 +01:00
|
|
|
{% endfor%}
|
2020-12-11 18:12:52 +01:00
|
|
|
</ul>
|
2020-12-21 18:41:55 +01:00
|
|
|
</div>
|
|
|
|
|
2020-12-11 16:54:09 +01:00
|
|
|
{% endblock %}
|