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