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>
|
2018-10-14 20:52:05 +02:00
|
|
|
<legend><a href="{{ song.path|url }}">{{ song.name }}</a></legend>
|
|
|
|
{% if song.thumbnail %}
|
|
|
|
<a href="{{ song.path|url }}"><img src="{{ song.thumbnail|url }}"></a>
|
2018-10-12 23:00:20 +02:00
|
|
|
{% endif %}
|
|
|
|
</figure>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|