Better colors and styling
All checks were successful
Build / build (push) Successful in 5m29s

This commit is contained in:
2024-02-08 21:39:40 +01:00
parent 78e16a9851
commit 4fe838eb2a
5 changed files with 93 additions and 39 deletions

View File

@ -1,8 +1,11 @@
{% 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 %}
<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 %}