{{ define "header" }} {{ $displayName := "" }} {{ $name := "" }} {{ $picture := "" }} {{ $banner := "" }} {{ $about := "" }} {{ $website := "" }} {{ $nip05 := "" }} {{ $lud16 := "" }} {{ range hugo.Data.profile }} {{ range . }} {{ range .tags }} {{ if eq (index . 0) "display_name" }} {{ $displayName = index . 1 }} {{ else if eq (index . 0) "name" }} {{ $name = index . 1 }} {{ else if eq (index . 0) "picture" }} {{ $picture = index . 1 }} {{ else if eq (index . 0) "banner" }} {{ $banner = index . 1 }} {{ else if eq (index . 0) "about" }} {{ $about = index . 1 }} {{ else if eq (index . 0) "website" }} {{ $website = index . 1 }} {{ else if eq (index . 0) "nip05" }} {{ $nip05 = index . 1 }} {{ else if eq (index . 0) "lud16" }} {{ $lud16 = index . 1 }} {{ end }} {{ end }} {{ end }} {{ end }} {{ if not $displayName }} {{ $displayName = $name }} {{ end }} {{ if $banner }} {{ end }} {{ if $picture }} {{ end }} {{ end }} {{ define "main" }} {{ $name := .Title }} {{ $description := .Params.playlist_description | default "" }} {{ $image := .Params.playlist_image | default "" }} {{ $tracks := .Params.playlist_tracks | default slice }} {{ $created_at := .Params.playlist_created_at | default 0 }} {{ if $image }} {{ end }} {{ $name }} {{ if $description }} {{ $description }} {{ end }} 🎵 {{ len $tracks }} tracks {{ if $created_at }} 📅 {{ dateFormat "January 2, 2006" (time $created_at) }} {{ end }} {{ if $tracks }} {{ range $index, $track := $tracks }} {{ add $index 1 }} {{ if $track.image }} {{ end }} {{ $track.title | default "Untitled" }} {{ $track.artist | default "Unknown Artist" }} {{ if $track.album }} {{ $track.album }} {{ end }} {{ if $track.duration }} {{ $track.duration }}s {{ end }} {{ if $track.tags }} {{ range $track.tags }} {{ . }} {{ end }} {{ end }} {{ if $track.url }} {{ end }} {{ if $track.id }} 🔗 {{ end }} {{ end }} {{ else }} No tracks found for this playlist. {{ end }} {{ if $tracks }} ▶ Play All Tracks {{ end }} ← Back to All Playlists {{ end }}
{{ $description }}
No tracks found for this playlist.