mixtape/templates/song.html
Emil Miler 4fe838eb2a
All checks were successful
Build / build (push) Successful in 5m29s
Better colors and styling
2024-02-08 22:06:47 +01:00

12 lines
303 B
HTML

{% extends "index.html" %}
{% block content %}
<main class="song">
{% for asset in page.assets %}
{% if asset is matching(page.slug~"[.](html)$") %}
<iframe class="song" src="{{ asset }}"></iframe>
<div class="controls">controls</div>
{% endif %}
{% endfor %}
</main>
{% endblock %}