mixtape/templates/song.html
Emil Miler ed49c101d3
All checks were successful
Build / build (push) Successful in 5m33s
Integrate Zola
2024-02-06 14:18:25 +01:00

9 lines
227 B
HTML

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