From f394a105712f186e850e49763f7c3f940c1a1f3a Mon Sep 17 00:00:00 2001 From: Madison Scott-Clary Date: Thu, 16 Feb 2023 19:09:51 -0800 Subject: [PATCH] Seasons --- config.toml | 3 +++ content/seasons/_index.md | 3 ++- content/seasons/intro.md | 2 +- layouts/partials/footer.html | 10 ++++++++++ static/css/florilegium.css | 12 ++++++++++-- 5 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 layouts/partials/footer.html diff --git a/config.toml b/config.toml index 30d94c1..4169efa 100644 --- a/config.toml +++ b/config.toml @@ -3,6 +3,9 @@ languageCode = 'en-us' title = 'Florilegium' theme = 'maddybook' +[permalinks] + post = '/:filename/' + [params] author = 'Madison Scott-Clary' home = 'https://makyo.ink' diff --git a/content/seasons/_index.md b/content/seasons/_index.md index baebbfe..af5dfce 100644 --- a/content/seasons/_index.md +++ b/content/seasons/_index.md @@ -1,5 +1,6 @@ --- -next: intro +title: Seasons +type: default --- "Seasons" is a 2022 essay by Madison Scott-Clary written as part of her coursework for her MFA in creative writing at Cornell College. It relies heavily on the use of footnotes while discussing the aspects of seasonality within poetry. The essay was released both as a printable PDF[^pdf] and as a static HTML site. diff --git a/content/seasons/intro.md b/content/seasons/intro.md index fcbbf3e..e81a131 100644 --- a/content/seasons/intro.md +++ b/content/seasons/intro.md @@ -1,6 +1,6 @@ --- title: Introduction -next: spring +next: seasons/spring ---
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..9ce96b0 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,10 @@ +{{ if (isset .Params "next") }} + +{{ end }} + + +{{ range .Site.Params.customJS }} + +{{ end }} diff --git a/static/css/florilegium.css b/static/css/florilegium.css index 9006c83..391da3f 100644 --- a/static/css/florilegium.css +++ b/static/css/florilegium.css @@ -1,7 +1,7 @@ @import url('https://fonts.googleapis.com/css2?family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700'); -body, h1, h2 { - font-family: "Gentium Plus", serif; +body *, h1, h2 { + font-family: "Gentium Plus", serif !important; } header { @@ -30,3 +30,11 @@ header h2:after { width: 25%; border-top: 1px solid black; } + +.next { + font-size: 20pt; + font-weight: bold; + display: block; + width: 100%; + text-align: center; +}