--- import { parseISO, format } from "date-fns";; import Layout from "@layouts/Layout.astro"; import AssociatedMedia from "@components/blocks/AssociatedMedia.astro"; import Warning from "@components/blocks/banners/Warning.astro"; import { fetchGlobalData } from "@utils/data/global/index.js"; import { md } from "@utils/helpers/general.js"; import icons from "@cdransf/astro-tabler-icons"; const { globals, movie } = await fetchGlobalData(Astro, Astro.url.pathname); if (!movie) return Astro.redirect("/404", 404); const { IconArrowLeft, IconHeart, IconNeedle, IconCircleCheck, } = icons; const pageTitle = `${movie.title} / Movies`; const description = movie.description || `Details about ${movie.title}.`; const alt = `${movie.title} / ${movie.year}${movie.rating ? ` (${movie.rating})` : ""}`; ---
Back to watching
{alt}
{movie.title} {movie.year && !movie.rating && ` (${movie.year})`} { movie.rating && ( {movie.rating} {movie.year && ` (${movie.year})`} ) } { movie.favorite && (
This is one of my favorite movies! ) } { movie.tattoo && (
I have a tattoo inspired by this movie! ) } { movie.collected && (
This movie is in my collection! ) } { movie.lastWatched && ( Last watched on{" "} {format(parseISO(movie.lastWatched), "PPPP")} ) }
{movie.review && ( <>

My thoughts

)} {movie.description && ( <>

Overview

)}