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

9 lines
183 B
HTML

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