Subtitles

This commit is contained in:
Madison Scott-Clary
2024-04-30 22:37:01 -07:00
parent e61c5ae12c
commit 631ea0bfd5
12 changed files with 30 additions and 5 deletions

View File

@ -1,9 +1,9 @@
--- ---
type: page type: page
title: And Flowers Wreathe Your Sleeping Form
next: "and-flowers-wreathe-your-sleeping-form/intro" next: "and-flowers-wreathe-your-sleeping-form/intro"
--- ---
# And Flowers Wreathe Your Sleeping Form
## Content note ## Content note

View File

@ -1,6 +1,8 @@
--- ---
title: Autumn title: Autumn
subtitle: And Flowers Wreathe Your Sleeping Form
next: "and-flowers-wreathe-your-sleeping-form/winter" next: "and-flowers-wreathe-your-sleeping-form/winter"
type: page
--- ---
Autumn bears a strange dichotomy of plenty and impending naught. In Autumn, we harvest. We think of squash and gourds. We think of wheat, rye, corn, those fields all tan and gray. Those rattle-dry stalks we met in spring are born here. Autumn bears a strange dichotomy of plenty and impending naught. In Autumn, we harvest. We think of squash and gourds. We think of wheat, rye, corn, those fields all tan and gray. Those rattle-dry stalks we met in spring are born here.

View File

@ -1,5 +1,6 @@
--- ---
title: Bibliography title: Bibliography
type: page
--- ---
{{% bibliography "bibliography" %}} {{% bibliography "bibliography" %}}

View File

@ -1,5 +1,7 @@
--- ---
title: Introduction title: Introduction
subtitle: And Flowers Wreathe Your Sleeping Form
type: page
next: "and-flowers-wreathe-your-sleeping-form/spring" next: "and-flowers-wreathe-your-sleeping-form/spring"
--- ---

View File

@ -1,5 +1,7 @@
--- ---
title: Winter title: Winter
subtitle: And Flowers Wreathe Your Sleeping Form
type: page
next: "and-flowers-wreathe-your-sleeping-form/spiral" next: "and-flowers-wreathe-your-sleeping-form/spiral"
--- ---

View File

@ -1,5 +1,7 @@
--- ---
title: Spiral title: Spiral
subtitle: And Flowers Wreathe Your Sleeping Form
type: page
--- ---
To return to Spring, to make it through that cycle of growth, of insomnia and harvest and frost, is to stand at a precipice. It is to stand right up against the edge of that spiral, lean over carefully, peer down into the depths from however many storeys up, and wonder. It is to confront memory in the form of heights. It is to regard the spiraling days, weeks, and months to either side of you, give them the acknowledgement they deserve, and then return to peering down into the depths. To return to Spring, to make it through that cycle of growth, of insomnia and harvest and frost, is to stand at a precipice. It is to stand right up against the edge of that spiral, lean over carefully, peer down into the depths from however many storeys up, and wonder. It is to confront memory in the form of heights. It is to regard the spiraling days, weeks, and months to either side of you, give them the acknowledgement they deserve, and then return to peering down into the depths.

View File

@ -1,5 +1,7 @@
--- ---
title: Spring title: Spring
subtitle: And Flowers Wreathe Your Sleeping Form
type: page
next: "and-flowers-wreathe-your-sleeping-form/summer" next: "and-flowers-wreathe-your-sleeping-form/summer"
--- ---

View File

@ -1,5 +1,7 @@
--- ---
title: Summer title: Summer
subtitle: And Flowers Wreathe Your Sleeping Form
type: page
next: "and-flowers-wreathe-your-sleeping-form/autumn" next: "and-flowers-wreathe-your-sleeping-form/autumn"
--- ---

View File

@ -1,5 +1,7 @@
--- ---
title: Winter title: Winter
subtitle: And Flowers Wreathe Your Sleeping Form
type: page
next: "and-flowers-wreathe-your-sleeping-form/spiral" next: "and-flowers-wreathe-your-sleeping-form/spiral"
--- ---

View File

@ -1,6 +1,7 @@
{{ define "main" }} {{ define "main" }}
<main id="main"> <main id="main">
<h1>{{ .Title }}</h1> <h1>{{ if .Params.subtitle }}{{ .Params.subtitle }}{{ else }}{{ .Title }}{{ end }}</h1>
{{ if .Params.subtitle }}<hr><h2>{{ .Title }}</h2>{{ end }}
{{ .Content }} {{ .Content }}
</main> </main>
{{ end }} {{ end }}

View File

@ -1,4 +1,5 @@
<header> <header>
<h1><a href="/">{{ if .Params.subtitle }}{{ .Params.subtitle }}{{ else }}Florilegium{{ end }} ¹</a></h1> <h1><a href="/">Florilegium ¹</a></h1>
<h2><a href="https://makyo.ink">¹ Madison Rye Progress</a></h2> <h2><a href="https://makyo.ink">¹ Madison Rye Progress</a></h2>
{{ if .Params.subtitle }}<!--<h3>{{ .Params.subtitle }}</h3>-->{{ end }}
</header> </header>

View File

@ -8,18 +8,26 @@ body * {
font-family: "Alegreya", serif; font-family: "Alegreya", serif;
} }
h1, h2, h1 *, h2 *, summary { h1, h2, h1 *, h2 *, summary, header {
font-family: "Coelacanth", serif !important; font-family: "Coelacanth", serif !important;
} }
header { header {
padding-left: 25%; margin: 0 auto;
} }
header * { header * {
font-family: "Coelacanth", serif !important;
text-align: left; text-align: left;
} }
header h3 {
padding-top: 1rem;
margin-bottom: -0.1rem;
border-top: 1px solid rgba(0, 0, 0, 0.1);
text-align: center;
}
header h1 { header h1 {
font-weight: 700; font-weight: 700;
} }