add credits and song description section

This commit is contained in:
rramiachraf 2022-07-02 17:06:29 +01:00
parent e7aa7403c7
commit 58a4755fcf
3 changed files with 84 additions and 14 deletions

View file

@ -15,6 +15,21 @@
<h1>{{.Title}}</h1>
</div>
<div id="lyrics">{{.Lyrics}}</div>
<div id="info">
<div id="about">
<h1 id="title">About</h1>
<p>{{.About}}</p>
</div>
<div id="credits">
<h1 id="title">Credits</h1>
{{range $key, $val := .Credits}}
<details>
<summary>{{$key}}</summary>
<p>{{$val}}</p>
</details>
{{end}}
</div>
</div>
</div>
</body>
</html>