2021-02-06 17:08:07 +01:00
|
|
|
{% 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>
|
2021-02-14 19:34:50 +01:00
|
|
|
{% for eventtitle, text in events.items() %}
|
2021-02-06 17:08:07 +01:00
|
|
|
<div class="event">
|
2021-02-14 19:34:50 +01:00
|
|
|
<h2>{{ eventtitle }}</h2>
|
|
|
|
{{ text[0]|safe }}
|
|
|
|
<hr>
|
2021-03-07 19:55:47 +01:00
|
|
|
<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>
|
2021-02-14 19:34:50 +01:00
|
|
|
<ul>
|
|
|
|
{% for link, booktitle in text[1].items() %}
|
|
|
|
<li><a href="/{{ link }}">{{ booktitle }}</a></li>
|
|
|
|
{% endfor%}
|
|
|
|
</ul>
|
2021-02-06 17:08:07 +01:00
|
|
|
</div>
|
|
|
|
{% endfor%}
|
|
|
|
{% endblock %}
|