14 lines
334 B
HTML
14 lines
334 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="songs">
|
|
{% for song in songs %}
|
|
<figure>
|
|
<legend><a href="{{ song.path|url }}">{{ song.name }}</a></legend>
|
|
{% if song.thumbnail %}
|
|
<a href="{{ song.path|url }}"><img src="{{ song.thumbnail|url }}"></a>
|
|
{% endif %}
|
|
</figure>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|