luniebox/application/templates/spotify/items/show.html

9 lines
265 B
HTML
Raw Permalink Normal View History

2022-02-06 10:19:03 +01:00
<div class="d-flex flex-column flex-grow-1">
<h5 class="mb-1">{{ item['name'] }}</h5>
<p class="mb-1"></p>
<small class="text-muted"></small>
</div>
{%if item['images']: %}
{% set images = item['images'] %}
{% include "spotify/items/cover.html" %}
{% endif %}