9 lines
227 B
HTML
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 %}
|