--- import Comments from "~/components/astro/comments.astro" import Header from "~/components/astro/header.astro" import Navigation from "~/components/astro/nav.astro" import BaseLayout from "~/layouts/base.astro" const { title, description, ogImage, needComment } = Astro.props const filename = Astro.url.pathname.split("/").filter(Boolean).pop() ?? "" const openGraphImage = !ogImage ? `/og/${filename}.png` : ogImage ---
{needComment && }