1
0
Fork 0

Placeholder discover books page

This commit is contained in:
Mouse Reeve 2020-03-16 17:45:34 -07:00
parent c8a65ae6e1
commit b1ad8ba317
4 changed files with 43 additions and 1 deletions

View file

@ -0,0 +1,17 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div class="content-container">
<h2>Recently Added Books</h2>
<div class="book-grid row wrap">
{% for book in books %}
<div class="book-preview">
<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 %}