mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-06 00:49:38 +00:00
17 lines
521 B
HTML
17 lines
521 B
HTML
{% extends 'layout.html' %}
|
|
{% load fr_display %}
|
|
{% block content %}
|
|
<div class="content-container">
|
|
<h2>Recently Added Books</h2>
|
|
<div class="book-grid row wrap shrink">
|
|
{% for book in books %}
|
|
<div class="cover-container">
|
|
<a href="{{ book.absolute_id }}">
|
|
{% include 'snippets/book_cover.html' with book=book %}
|
|
</a>
|
|
{% include 'snippets/shelve_button.html' with book=book %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|