2021-09-24 08:11:14 +00:00
|
|
|
{% macro book_cover_image(book, title=None) -%}
|
2021-03-20 10:32:50 +00:00
|
|
|
{%- set book_title = book.title if book.title else book.name -%}
|
2021-09-17 04:20:11 +00:00
|
|
|
{%- set book_title = title if title else book_title -%}
|
2021-09-24 08:11:14 +00:00
|
|
|
{% set srcset = book|get_cover_srcset %}
|
|
|
|
<img
|
|
|
|
srcset="{{ srcset }}"
|
|
|
|
src="{{ url_for('web.get_cover', book_id=book.id, resolution=0, cache_bust=book|last_modified) }}"
|
|
|
|
title="{{ book_title }}"
|
|
|
|
alt="{{ book_title }}"
|
|
|
|
/>
|
2021-03-20 10:32:50 +00:00
|
|
|
{%- endmacro %}
|