--- import { CacheHeaders, ONE_HOUR } from 'cdn-cache-control'; import Layout from "@layouts/Layout.astro"; import AssociatedMedia from "@components/blocks/AssociatedMedia.astro"; import icons from "@cdransf/astro-tabler-icons"; import { fetchGlobalData } from "@utils/data/global/index.js"; import { mediaLinks } from "@utils/helpers/media.js"; import { md } from "@utils/helpers/general.js"; import slugify from "slugify"; const { genre } = await fetchGlobalData(Astro, Astro.url.pathname); if (!genre) return Astro.redirect("/404", 404); const headers = new CacheHeaders() .swr() .ttl(ONE_HOUR) .tag(['genre', `genre-${slugify(genre.name, { lower: true })}`]); headers.forEach((value, key) => { Astro.response.headers.set(key, value); }); const { IconArrowLeft } = icons; const artistCount = genre.artists?.length || 0; const connectingWords = artistCount > 1 ? "artists are" : "artist is"; const genreMediaLinks = mediaLinks(genre.artists, "artist", 5); const pageTitle = `${genre.name} / Music`; const description = `Discover the music genre ${genre.name}, featuring ${artistCount} artists and ${genre.total_plays} total track plays.`; ---
Back to music

{genre.name}

{ genreMediaLinks && ( <>

My top {genre.name}{" "} {connectingWords} I've listened to{" "} {genre.total_plays}{" "} tracks from this genre.


) } { genre.description && ( <>

Overview

Continue reading at Wikipedia.

Wikipedia content provided under the terms of the{" "} Creative Commons BY-SA license

) }