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.
14 lines
332 B
14 lines
332 B
4 years ago
|
{% 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>
|
||
|
{% for title, text in events.items() %}
|
||
|
<div class="event">
|
||
|
<h2>{{ title }}</h2>
|
||
|
{{ text|safe }}
|
||
|
</div>
|
||
|
{% endfor%}
|
||
|
{% endblock %}
|