Files
site/templates/tunes.tmpl
2022-05-09 19:31:40 -06:00

12 lines
372 B
Cheetah

<!--music.tmpl-->
{{ template "header.tmpl" . }}
<p>
This serves as a compilation of every band that I like. Genres may vary, however I mostly listen to Hardcore, various genres of Metal, and Ska.
</p>
<div class="music-container">
{{ range $val := . }}
<a href="{{ $val.Url }}" class="music">{{ $val.Name }}</a>
{{ end }}
</div>
{{ template "footer_no_banners.tmpl" . }}