This commit is contained in:
Sebastian Hugentobler 2024-05-06 14:17:25 +02:00
parent ead3672570
commit 6d949bb21e
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
10 changed files with 74 additions and 18 deletions

View file

@ -0,0 +1,8 @@
{% extends "base" %}
{% block content %}
<div class="grid-container">
{% for book in books %}
{% include "book_card" %}
{% endfor %}
</div>
{% endblock content %}