forked from mirrors/bookwyrm
23 lines
714 B
HTML
23 lines
714 B
HTML
{% spaceless %}
|
|
|
|
{% load bookwyrm_tags %}
|
|
{% load i18n %}
|
|
|
|
{% if not hide_book %}
|
|
{% with book=status.book|default:status.mention_books.first %}
|
|
<div class="columns is-mobile">
|
|
<div class="column is-narrow">
|
|
<div>
|
|
<a href="{{ book.local_path }}">{% include 'snippets/book_cover.html' with book=book size="small" %}</a>
|
|
</div>
|
|
</div>
|
|
<div class="column">
|
|
<h3 class="title is-6 mb-1">{% include 'snippets/book_titleby.html' with book=book %}</h3>
|
|
<p>{{ book|book_description|default:""|truncatewords_html:20 }}</p>
|
|
{% include 'snippets/shelve_button/shelve_button.html' with book=book %}
|
|
</div>
|
|
</div>
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% endspaceless %}
|