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