moviewyrm/bookwyrm/templates/snippets/book_preview.html

13 lines
468 B
HTML
Raw Normal View History

2020-11-02 19:46:23 +00:00
<div class="media">
<div class="media-left">
<div>
<a href="/book/{{ book.id }}">{% include 'snippets/book_cover.html' with book=book %}</a>
{% include 'snippets/shelve_button.html' with book=book %}
</div>
</div>
<div class="media-content">
<h3 class="title is-6">{% include 'snippets/book_titleby.html' with book=book %}</h3>
{% include 'snippets/book_description.html' with book=book %}
</div>
</div>