bookwyrm-mastodon/bookwyrm/templates/snippets/book_titleby.html

10 lines
180 B
HTML
Raw Normal View History

2020-09-28 21:25:05 -04:00
<span>
2020-05-03 20:53:14 -04:00
<a href="/book/{{ book.id }}">{{ book.title }}</a>
2020-04-01 22:38:07 -04:00
</span>
{% if book.authors %}
2020-09-28 21:25:05 -04:00
<span>
2020-04-01 22:38:07 -04:00
by {% include 'snippets/authors.html' with book=book %}
</span>
{% endif %}