implement downloads

This commit is contained in:
Sebastian Hugentobler 2024-05-06 10:40:34 +02:00
parent ac7b0e7e88
commit 5e9f49311e
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
8 changed files with 107 additions and 36 deletions

View file

@ -0,0 +1,25 @@
<article class="book-card">
<header class="grid-item">
<hgroup>
<h5>{{ book.title }}</h5>
<p>{{ book.author }}</p>
</hgroup>
</header>
<img class="cover" src="/cover/{{ book.id }}" alt="book cover">
<footer>
<form>
<fieldset role="group">
<details class="dropdown">
<summary role="button" class="outline">
Download
</summary>
<ul>
{% for format, _ in book.formats %}
<li><a href="/book/{{ book.id }}/{{ format }}">{{ format }}</a></li>
{% endfor %}
</ul>
</details>
</fieldset>
</form>
</footer>
</article>