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/templates/home.html

14 lines
366 B
HTML

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