moviewyrm/bookwyrm/templates/snippets/book_titleby.html
2020-09-28 18:25:58 -07:00

10 lines
180 B
HTML

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