12 lines
372 B
Cheetah
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">
|
|
{{ $val := range . }}
|
|
<a href="{{ $val.Url }}" class="music">{{ $val.Name }}</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ template "footer_no_banners.tmpl" . }}
|