This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
2018-10-12 23:00:20 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2018-10-14 20:52:05 +02:00
|
|
|
<div class="songs">
|
|
|
|
{% for song in songs %}
|
2018-10-12 23:00:20 +02:00
|
|
|
<figure>
|
2019-09-10 19:00:23 +02:00
|
|
|
<figcaption><a href="{{ song.path|url }}/">{{ song.name }}</a></figcaption>
|
2018-10-14 20:52:05 +02:00
|
|
|
{% if song.thumbnail %}
|
2019-09-10 19:00:23 +02:00
|
|
|
<a href="{{ song.path|url }}/"><img src="{{ song.thumbnail|url }}" alt="{{ song.name }}"></a>
|
2018-10-12 23:00:20 +02:00
|
|
|
{% endif %}
|
|
|
|
</figure>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|