diff --git a/config.toml b/config.toml
index 4169efa..0439ddd 100644
--- a/config.toml
+++ b/config.toml
@@ -3,8 +3,6 @@ languageCode = 'en-us'
title = 'Florilegium'
theme = 'maddybook'
-[permalinks]
- post = '/:filename/'
[params]
author = 'Madison Scott-Clary'
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..e15e657
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,13 @@
+---
+---
+
+**flor·i·le·gi·um** *(flôr′ə-lē′jē-əm)*
+n. pl. **flor·i·le·gi·a** *(-jē-ə)*
+
+A collection of excerpts from written texts, especially works of literature.
+
+-----
+
+## [Seasons](/seasons)
+
+"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/_index.md b/content/seasons/_index.md
index af5dfce..03c1e43 100644
--- a/content/seasons/_index.md
+++ b/content/seasons/_index.md
@@ -1,6 +1,7 @@
---
title: Seasons
-type: default
+type: page
+next: "seasons/intro"
---
"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/autumn.md b/content/seasons/autumn.md
index fc189d6..09537db 100644
--- a/content/seasons/autumn.md
+++ b/content/seasons/autumn.md
@@ -1,6 +1,6 @@
---
title: Autumn
-next: winter
+next: "seasons/winter"
---
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.
diff --git a/content/seasons/intro.md b/content/seasons/intro.md
index e81a131..ddd9e91 100644
--- a/content/seasons/intro.md
+++ b/content/seasons/intro.md
@@ -1,6 +1,6 @@
---
title: Introduction
-next: seasons/spring
+next: "seasons/spring"
---
diff --git a/content/seasons/spring.md b/content/seasons/spring.md
index 68d969c..0888db9 100644
--- a/content/seasons/spring.md
+++ b/content/seasons/spring.md
@@ -1,6 +1,6 @@
---
title: Spring
-next: summer
+next: "seasons/summer"
---
A season of newness and beginnings: new growth, new life, new warmth under a new sun.
diff --git a/content/seasons/summer.md b/content/seasons/summer.md
index 614eaa5..6deeaa4 100644
--- a/content/seasons/summer.md
+++ b/content/seasons/summer.md
@@ -1,6 +1,6 @@
---
title: Summer
-next: autumn
+next: "seasons/autumn"
---
As the year continues on its upward spiral, we come to one of those strange apogees of the longest day. Strange because yes, of course it bears meaning as the longest day, and yet the start of Summer never seems to fall directly on that day, does it? There is doubtless some good reason that, at least here, that is the first day of summer rather than midsummer.
diff --git a/content/seasons/winter.md b/content/seasons/winter.md
index 57f3bfa..8b78ff5 100644
--- a/content/seasons/winter.md
+++ b/content/seasons/winter.md
@@ -1,6 +1,6 @@
---
title: Winter
-next: spiral
+next: "seasons/spiral"
---
"Now Winter comes slowly, Pale, Meager, and Old,"[^30] Winter sings in *The Fairy Queen* {{% cite source="purcell" %}}.
diff --git a/layouts/page/baseof.html b/layouts/page/baseof.html
new file mode 100644
index 0000000..0ddd37e
--- /dev/null
+++ b/layouts/page/baseof.html
@@ -0,0 +1,11 @@
+
+
+ {{- partial "head.html" . -}}
+
+ {{- partial "header.html" . -}}
+
+ {{- block "main" . }}{{- end }}
+
+ {{- partial "footer.html" . -}}
+
+
diff --git a/layouts/page/list.html b/layouts/page/list.html
new file mode 100644
index 0000000..032394c
--- /dev/null
+++ b/layouts/page/list.html
@@ -0,0 +1,5 @@
+{{ define "main" }}
+
+ {{ .Content }}
+
+{{end}}
diff --git a/layouts/page/single.html b/layouts/page/single.html
new file mode 100644
index 0000000..ecd5d7d
--- /dev/null
+++ b/layouts/page/single.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+
+ {{ .Title }}
+ {{ .Content }}
+
+{{ end }}
diff --git a/static/css/florilegium.css b/static/css/florilegium.css
index 391da3f..a0e19e3 100644
--- a/static/css/florilegium.css
+++ b/static/css/florilegium.css
@@ -32,9 +32,13 @@ header h2:after {
}
.next {
- font-size: 20pt;
- font-weight: bold;
+ font-family: sans-serif !important;
display: block;
- width: 100%;
+ margin: 0.5rem auto 1rem auto;
+ font-size: 40pt;
text-align: center;
+ text-decoration: none;
+}
+.phantom {
+ visibility: hidden;
}