mixtape/templates/song.html

9 lines
227 B
HTML
Raw Normal View History

2024-02-06 14:18:25 +01:00
{% 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 %}