forked from mirrors/bookwyrm
eea8b4e750
- Have an explicit contextual class on `cover-container`. - Use more flexible, consistent and searchable variable name for passing classes to covers. - Consistently use `'…'` with django variables. - Give the option to not hide covers to screen readers. - consitently give a title to the cover container if `alt_text` exists. - [lists] Remove `.content` which is applying too extensive default styles.
39 lines
1.6 KiB
HTML
39 lines
1.6 KiB
HTML
{% load bookwyrm_tags %}
|
|
<div class="columns is-multiline">
|
|
{% for list in lists %}
|
|
<div class="column is-one-quarter">
|
|
<div class="card">
|
|
<header class="card-header">
|
|
<h4 class="card-header-title">
|
|
<a href="{{ list.local_path }}">{{ list.name }}</a> <span class="subtitle">{% include 'snippets/privacy-icons.html' with item=list %}</span>
|
|
</h4>
|
|
</header>
|
|
|
|
{% with list_books=list.listitem_set.all|slice:5 %}
|
|
{% if list_books %}
|
|
<div class="card-image columns is-mobile is-gapless is-clipped has-height">
|
|
{% for book in list_books %}
|
|
<a class="column is-narrow" href="{{ book.book.local_path }}">
|
|
{% include 'snippets/book_cover.html' with book=book.book cover_class='is-small' aria='show' %}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<div class="card-content is-flex-grow-0">
|
|
<div {% if list.description %}title="{{ list.description }}"{% endif %}>
|
|
{% if list.description %}
|
|
{{ list.description|to_markdown|safe|truncatechars_html:30 }}
|
|
{% else %}
|
|
|
|
{% endif %}
|
|
</div>
|
|
<p class="subtitle help">
|
|
{% include 'lists/created_text.html' with list=list %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|