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.
negromate_origins/web/negromateweb/templates/home.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 %}