correction yaml creation - extraction yaml + html preparation

This commit is contained in:
github_username_here
2026-03-23 19:05:01 +01:00
parent 874ba49512
commit f7e63ce1e1
156 changed files with 8565 additions and 8512 deletions

View File

@@ -0,0 +1,19 @@
{{define "content"}}
<section class="psalm">
<div class="psalm__inner">
<ul class="psalm__strophs">
{{range .Strophes}}
<li class="psalm__strophe" data-who="{{.Who}}" data-to="{{.To}}" data-of="{{.Of}}">
{{range .Lines}}
<ul class="psalm__lines">
{{range .}}
<li class="line" data-verse="{{.Number}}">{{.Text}}</li>
{{end}}
</ul>
{{end}}
</li>
{{end}}
</ul>
</div>
</section>
{{end}}