From 9dcba24a267aa736f1548eb642ea630f60440452 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Wed, 26 Jun 2024 21:06:33 -0700 Subject: [PATCH] Add CSS IDs for site description, title --- README.md | 4 ++++ layouts/partials/paige/site.html | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0172f486..f075641e 100644 --- a/README.md +++ b/README.md @@ -970,6 +970,10 @@ Page identifiers:
The sections header.
#paige-series
The series.
+
#paige-site-description
+
The site description.
+
#paige-site-title
+
The site title.
#paige-title
The title.
#paige-toc
diff --git a/layouts/partials/paige/site.html b/layouts/partials/paige/site.html index c6179994..3f094c35 100644 --- a/layouts/partials/paige/site.html +++ b/layouts/partials/paige/site.html @@ -1,8 +1,8 @@ {{ $page := . }} {{ with $page.Param "paige.site_title" }} -

{{ . | markdownify }}

+

{{ . | markdownify }}

{{ end }} {{ with $page.Param "paige.site_description" }} -

{{ . | markdownify }}

+

{{ . | markdownify }}

{{ end }}