little-hesinde/rusty-library/templates/recents.html
2024-05-06 10:55:18 +02:00

10 lines
209 B
HTML

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