diff options
Diffstat (limited to 'vhosts/blog/nuldoc-src/components/page_layout.ts')
| -rw-r--r-- | vhosts/blog/nuldoc-src/components/page_layout.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vhosts/blog/nuldoc-src/components/page_layout.ts b/vhosts/blog/nuldoc-src/components/page_layout.ts index 90eb3b2c..391305c1 100644 --- a/vhosts/blog/nuldoc-src/components/page_layout.ts +++ b/vhosts/blog/nuldoc-src/components/page_layout.ts @@ -1,5 +1,5 @@ import { Config } from "../config.ts"; -import { el, Element, text } from "../dom.ts"; +import { el, Element } from "../dom.ts"; import { stylesheetLinkElement } from "./utils.ts"; type Params = { @@ -70,7 +70,7 @@ export async function pageLayout( ? [linkElement("alternate", metaAtomFeedHref, "application/atom+xml")] : []), linkElement("icon", "/favicon.svg", "image/svg+xml"), - el("title", [], text(metaTitle)), + el("title", [], metaTitle), await stylesheetLinkElement("/style.css", config), ...( requiresSyntaxHighlight |
