moviewyrm/bookwyrm/templates/snippets/book_cover.html

43 lines
939 B
HTML
Raw Normal View History

2021-04-09 21:57:49 +00:00
{% spaceless %}
{% load i18n %}
2021-06-07 16:13:24 +00:00
{% load static %}
2021-04-09 21:57:49 +00:00
<figure
class="
cover-container
{{ cover_class }}
{% if not book.cover %}
no-cover
{% endif %}
"
{% if book.alt_text %}
title="{{ book.alt_text }}"
{% endif %}
>
<img
class="book-cover"
{% if book.cover %}
2021-06-07 16:13:24 +00:00
src="{% if img_path is None %}{% get_media_prefix %}{% else %}{{ img_path }}{% endif %}{{ book.cover }}"
2021-04-09 21:57:49 +00:00
itemprop="thumbnailUrl"
{% if book.alt_text %}
alt="{{ book.alt_text }}"
{% endif %}
{% else %}
2021-06-07 16:13:24 +00:00
src="{% static "images/no_cover.jpg" %}"
alt="{% trans "No cover" %}"
{% endif %}
>
{% if not book.cover and book.alt_text %}
<figcaption class="cover_caption">
<p>{{ book.alt_text }}</p>
</figcaption>
2021-04-09 21:57:49 +00:00
{% endif %}
</figure>
2021-04-09 21:57:49 +00:00
{% endspaceless %}