mixtape/templates/song.html
2024-02-06 14:09:10 +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 %}