simple-s3-gallery/templates/card.html
2023-12-28 23:25:35 -06:00

41 lines
1.1 KiB
HTML

<div class="col">
<div class="card shadow-sm">
<div class="card-header">
<span class="flex">{{ gallery.title }}</span>
<a
href="#"
class="btn btn-link float-end"
data-bs-toggle="tooltip"
data-bs-placement="top"
data-bs-title="Add a reaction"
>
<i class="bi-heart-fill text-end" style="font-size: 1rem; color: pink;"></i>
</a>
</div>
<img
class="card-image-top"
width="{{ gallery.width | default('100%') }}"
height="{{ gallery.height | default('225') }}"
src="{{ gallery.src }}"
alt="{{ gallery.alt_text if gallery.alt_text else gallery.title }}"
/>
<div class="card-body">
<p class="card-text">{{ gallery.description | default('') }}</p>
</div>
<div class="card-footer text-body-secondary text-end">
{% if gallery.reactions %}
{% for reaction in gallery.reactions %}
{# TODO: limit total number of reactions shown #}
<span class="badge rounded-pill">
<i class="bi-{{ reaction }}" style="color: black;"></i>
</span>
{% endfor %}
{% endif %}
</div>
</div>
</div>