feat: Update songbook

- Change songbook from njk to liquid
- Add song partial
This commit is contained in:
sthag 2026-03-10 22:13:28 +01:00
parent 92f3c4f81f
commit 99b98635e7
4 changed files with 50 additions and 53 deletions

View file

@ -0,0 +1,10 @@
<article class="songbook_song">
<header>
<h2>{{ data.title }}</h2>
<h6>{{ data.releaseDate }}</h6>
<p>{{ data.description }}</p>
</header>
{% comment %}<pre class="pre_code"><code>{{ content }}</code></pre>{% endcomment %}
{{ content }}
<footer>{{ index }}</footer>
</article>