Seasons
This commit is contained in:
@ -3,8 +3,6 @@ languageCode = 'en-us'
|
||||
title = 'Florilegium'
|
||||
theme = 'maddybook'
|
||||
|
||||
[permalinks]
|
||||
post = '/:filename/'
|
||||
|
||||
[params]
|
||||
author = 'Madison Scott-Clary'
|
||||
|
||||
13
content/_index.md
Normal file
13
content/_index.md
Normal file
@ -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.
|
||||
@ -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.
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Introduction
|
||||
next: seasons/spring
|
||||
next: "seasons/spring"
|
||||
---
|
||||
|
||||
<div style="text-align: center; font-style: italic;">
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -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" %}}.
|
||||
|
||||
11
layouts/page/baseof.html
Normal file
11
layouts/page/baseof.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
||||
5
layouts/page/list.html
Normal file
5
layouts/page/list.html
Normal file
@ -0,0 +1,5 @@
|
||||
{{ define "main" }}
|
||||
<main id="main"{{ if (isset .Params "fit" )}} class="fit"{{ end }}>
|
||||
{{ .Content }}
|
||||
</main>
|
||||
{{end}}
|
||||
6
layouts/page/single.html
Normal file
6
layouts/page/single.html
Normal file
@ -0,0 +1,6 @@
|
||||
{{ define "main" }}
|
||||
<main id="main">
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
</main>
|
||||
{{ end }}
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user