20 lines
512 B
HTML
20 lines
512 B
HTML
{{define "head"}}
|
|
<title>Releases - ari melody 💫</title>
|
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/x-icon">
|
|
<link rel="stylesheet" href="/admin/static/tracks.css">
|
|
{{end}}
|
|
|
|
{{define "content"}}
|
|
<main>
|
|
<header>
|
|
<h1>Tracks <small>({{len .Tracks}} total)</small></h1>
|
|
<a class="button new" id="create-track">Create New</a>
|
|
</header>
|
|
|
|
<div id="tracks">
|
|
{{range .Tracks}}
|
|
{{block "track" .}}{{end}}
|
|
{{end}}
|
|
</div>
|
|
</main>
|
|
{{end}}
|