Files
davideisinger.com/themes/v2/layouts/music/list.html
David Eisinger 33e0a08130 Add music page
2023-10-30 00:03:56 -04:00

21 lines
497 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{ define "main" }}
<section>
<hr>
<h2>{{ .Title }}</h2>
{{ .Content }}
{{ range where .Site.RegularPages "Params.exclude_music" "!=" true }}
{{ $page := . }}
{{ range sort (.Resources.Match "*.mp3") "Title" "desc" }}
<p>
<audio controls src="{{ .RelPermalink }}"></audio><br>
“{{ substr .Title 0 -4 }}” <a href="{{ $page.RelPermalink }}">{{ $page.Title }}</a>
</p>
{{ end }}
{{ end }}
</section>
{{ end }}