--- import Footer from "../components/Footer.astro"; import LeftNav from "../components/LeftNav.astro"; import classNames from "classnames"; import "../styles/global.scss"; import "katex/dist/katex.min.css"; import portrait from "../assets/self.png"; interface Props { title?: string; pad?: boolean; toc?: boolean; } const { title, pad, toc } = Astro.props; const shouldPad = pad === undefined ? true : pad; const hasToc = toc ?? false; --- {title && `${title} - `} Michael Zhang