2025-10-21 17:15:26 +01:00
|
|
|
{{define "head"}}
|
|
|
|
|
<title>Artists - ari melody 💫</title>
|
|
|
|
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/x-icon">
|
2025-10-21 18:39:38 +01:00
|
|
|
<link rel="stylesheet" href="/admin/static/artists.css">
|
2025-10-21 17:15:26 +01:00
|
|
|
{{end}}
|
|
|
|
|
|
|
|
|
|
{{define "content"}}
|
|
|
|
|
<main>
|
2025-10-21 18:39:38 +01:00
|
|
|
<header>
|
2025-10-21 18:47:27 +01:00
|
|
|
<h1>Artists <small>({{len .Artists}} total)</small></h2>
|
2025-10-21 17:15:26 +01:00
|
|
|
<a class="button new" id="create-artist">Create New</a>
|
2025-10-21 18:39:38 +01:00
|
|
|
</header>
|
|
|
|
|
|
2025-10-21 17:15:26 +01:00
|
|
|
{{if .Artists}}
|
|
|
|
|
<div class="artists-group">
|
2025-10-21 18:39:38 +01:00
|
|
|
{{range .Artists}}
|
|
|
|
|
{{block "artist" .}}{{end}}
|
2025-10-21 17:15:26 +01:00
|
|
|
{{end}}
|
|
|
|
|
</div>
|
|
|
|
|
{{else}}
|
|
|
|
|
<p>There are no artists.</p>
|
|
|
|
|
{{end}}
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<script type="module" src="/admin/static/admin.js"></script>
|
2025-10-21 18:39:38 +01:00
|
|
|
<script type="module" src="/admin/static/artists.js"></script>
|
2025-10-21 17:15:26 +01:00
|
|
|
{{end}}
|