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

11 lines
298 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">
{{ item['description'] }}
</p>
<small class="text-muted"></small>
</div>
{%if item['images']: %}
{% set images = item['images'] %}
{% include "spotify/items/cover.html" %}
{% endif %}