From 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1 Mon Sep 17 00:00:00 2001
From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon, 11 Sep 2023 06:11:42 +0000
Subject: [PATCH] feat: plugin for remark-breaks (#467)
---
quartz.layout.ts | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/quartz.layout.ts b/quartz.layout.ts
index f47b224..482aba6 100644
--- a/quartz.layout.ts
+++ b/quartz.layout.ts
@@ -1,8 +1,8 @@
-import { PageLayout } from "./quartz/cfg"
+import { PageLayout, SharedLayout } from "./quartz/cfg"
import * as Component from "./quartz/components"
// components shared across all pages
-export const sharedPageComponents = {
+export const sharedPageComponents: SharedLayout = {
head: Component.Head(),
header: [],
footer: Component.Footer({
@@ -15,7 +15,7 @@
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
- beforeBody: [Component.ArticleTitle(), Component.ReadingTime(), Component.TagList()],
+ beforeBody: [Component.ArticleTitle(), Component.ContentMeta(), Component.TagList()],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
--
Gitblit v1.10.0