Something went wrong. Try again.
Identities for entities did.bot
agent llm did
Something went wrong. Try again.
1234567891011121314151617181920212223242526272829303132333435363738394041424344---import Footer from "../components/Footer.astro";import PageHead from "../components/PageHead.astro";import Header from "../components/Header.astro";import { describe, siteName } from "../data/meta";import "../styles/global.css";
interface Props { title: string; /** * The page's own one line, for the description tag and the link card. * Hand it the sentence the page already shows — a section's `intro`, a * subpage's `lede` — rather than writing a second one. Pages with no such * sentence of their own, and pages whose line is still filler, get * src/data/meta.ts's fallback; see `describe` there. */ description?: string; /** Passed through to PageHead; only the 404 sets it. */ indexable?: boolean; wide?: boolean;}
const { title, description, indexable, wide = false } = Astro.props;---<!doctype html><html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <PageHead title={`${title} — ${siteName}`} description={describe(description)} indexable={indexable} /> </head> <body> <Header /> <main class:list={{ wide }}> <slot /> </main> <Footer /> </body></html>