You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
755 B
22 lines
755 B
{% extends "base.html" %}
|
|
{% block main %}
|
|
<div id="nav" class="container">
|
|
<button id="leftmostbtn"><a href="/">All books</a></button>
|
|
<button><a href="/upload">Upload</a></button>
|
|
<div class="dropdown" style="visibility: hidden">
|
|
<button id="Year" class="dropbtn">Year</button>
|
|
</div>
|
|
</div>
|
|
{% for eventtitle, text in events.items() %}
|
|
<div class="event">
|
|
<h2>{{ eventtitle }}</h2>
|
|
{{ text[0]|safe }}
|
|
<p>For those interested to learn more on the topics of this read and repair event the physical library at varia offers the following books:</p>
|
|
<ul>
|
|
{% for link, booktitle in text[1].items() %}
|
|
<li><a href="/{{ link }}">{{ booktitle }}</a></li>
|
|
{% endfor%}
|
|
</ul>
|
|
</div>
|
|
{% endfor%}
|
|
{% endblock %}
|
|
|