dalfuss.net/quartz/components/PageTitle.tsx

23 lines
663 B
TypeScript
Raw Permalink Normal View History

import { pathToRoot } from "../util/path"
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
import { classNames } from "../util/lang"
import { i18n } from "../i18n"
2023-06-08 05:27:32 +00:00
const PageTitle: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzComponentProps) => {
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
const baseDir = pathToRoot(fileData.slug!)
2023-07-23 00:27:41 +00:00
return (
2024-11-16 22:07:50 +00:00
<h1 class={classNames(displayClass, "page-title")}>
2023-07-23 00:27:41 +00:00
<a href={baseDir}>{title}</a>
2024-11-16 22:07:50 +00:00
</h1>
2023-07-23 00:27:41 +00:00
)
2023-06-08 05:27:32 +00:00
}
2023-06-12 06:46:38 +00:00
2023-07-01 20:35:27 +00:00
PageTitle.css = `
.page-title {
margin: 0;
}
`
2023-06-18 17:47:07 +00:00
2023-07-01 20:35:27 +00:00
export default (() => PageTitle) satisfies QuartzComponentConstructor