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

@ -13,8 +13,8 @@
<main class="songs">
<section class="filters">
<input type="text" placeholder="Hledat">
<div class="button" data-category="classic">classic</div>
<div class="button" data-category="mixtape">mixtape</div>
<div class="button" data-category="classic">Classic</div>
<div class="button" data-category="mixtape">Mixtape</div>
</section>
<section class="song-list">
{% for song in section.pages %}

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 %}