{{ $listoryApi := getenv "HUGO_LISTORY_HOST" }}{{ $listoryToken := getenv "HUGO_LISTORY_TOKEN" }} {{ $res := getJSON "https://listory.apricote.de/api/v1/reports/top-genres?timePreset=last_180_days" (dict "Authorization" (printf "Bearer %s" $listoryToken) ) }}
    {{ range first 5 $res.items }}
  1. {{ .genre.name | title }}
    {{ .count }}Listens
    {{ range first 3 .artists }}{{.artist.name}} {{ end }}
  2. {{ end }}