moviewyrm/bookwyrm/templates/snippets/book_titleby.html
2020-09-17 13:30:54 -07:00

10 lines
209 B
HTML

<span class="title">
<a href="/book/{{ book.id }}">{{ book.title }}</a>
</span>
{% if book.authors %}
<span class="author">
by {% include 'snippets/authors.html' with book=book %}
</span>
{% endif %}