keroosha.cybergulag.today/quartz/components/PageTitle.tsx

18 lines
522 B
TypeScript
Raw Normal View History

import { canonicalizeServer, pathToRoot } from "../path"
2023-06-12 09:46:38 +03:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-08 08:27:32 +03:00
2023-07-01 23:35:27 +03:00
function PageTitle({ fileData, cfg }: QuartzComponentProps) {
const title = cfg?.pageTitle ?? "Untitled Quartz"
const slug = canonicalizeServer(fileData.slug!)
2023-07-13 10:19:35 +03:00
const baseDir = pathToRoot(slug)
2023-07-01 23:35:27 +03:00
return <h1 class="page-title"><a href={baseDir}>{title}</a></h1>
2023-06-08 08:27:32 +03:00
}
2023-06-12 09:46:38 +03:00
2023-07-01 23:35:27 +03:00
PageTitle.css = `
.page-title {
margin: 0;
}
`
2023-06-18 20:47:07 +03:00
2023-07-01 23:35:27 +03:00
export default (() => PageTitle) satisfies QuartzComponentConstructor