home to your local SPACEGIRL 💫 arimelody.space
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

show total counts on releases/artists/tracks pages

+8 -6
+5 -3
admin/static/admin.css
··· 250 250 .card-header a:hover { 251 251 text-decoration: underline; 252 252 } 253 - .card-header small { 253 + 254 + header :is(h1, h2, h3) small, 255 + .card-header :is(h1, h2, h3) small { 254 256 display: inline-block; 255 - font-size: 15px; 256 - transform: translateY(-2px); 257 + font-size: .6em; 258 + transform: translateY(-0.1em); 257 259 color: var(--fg-0); 258 260 } 259 261
+1 -1
admin/templates/html/artists.html
··· 8 8 {{define "content"}} 9 9 <main> 10 10 <header> 11 - <h1><a href="/admin/artists/">Artists</a></h2> 11 + <h1><a href="/admin/artists/">Artists</a> <small>({{len .Artists}} total)</small></h2> 12 12 <a class="button new" id="create-artist">Create New</a> 13 13 </header> 14 14
+1 -1
admin/templates/html/releases.html
··· 8 8 {{define "content"}} 9 9 <main> 10 10 <header> 11 - <h1><a href="/admin/releases/">Releases</a></h1> 11 + <h1><a href="/admin/releases/">Releases</a> <small>({{len .Releases}} total)</small></h1> 12 12 <a class="button new" id="create-release">Create New</a> 13 13 </header> 14 14
+1 -1
admin/templates/html/tracks.html
··· 8 8 {{define "content"}} 9 9 <main> 10 10 <header> 11 - <h1><a href="/admin/tracks/">Tracks</a></h1> 11 + <h1><a href="/admin/tracks/">Tracks</a> <small>({{len .Tracks}} total)</small></h1> 12 12 <a class="button new" id="create-track">Create New</a> 13 13 </header> 14 14