Integrate Zola

This commit is contained in:
2024-02-06 12:13:04 +01:00
parent 279c018072
commit 85e2147029
155 changed files with 509 additions and 37 deletions

8
templates/song.html Normal file
View File

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