little-hesinde/rusty-library/templates/books.html

9 lines
183 B
HTML
Raw Normal View History

2024-05-02 16:10:29 +00:00
{% extends "base" %}
{% block content %}
<div class="grid-container">
2024-05-06 08:40:34 +00:00
{% for book in books %}
{% include "book_card" %}
{% endfor %}
2024-05-02 16:10:29 +00:00
</div>
{% endblock content %}