Seasons
This commit is contained in:
@ -3,6 +3,9 @@ languageCode = 'en-us'
|
||||
title = 'Florilegium'
|
||||
theme = 'maddybook'
|
||||
|
||||
[permalinks]
|
||||
post = '/:filename/'
|
||||
|
||||
[params]
|
||||
author = 'Madison Scott-Clary'
|
||||
home = 'https://makyo.ink'
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Introduction
|
||||
next: spring
|
||||
next: seasons/spring
|
||||
---
|
||||
|
||||
<div style="text-align: center; font-style: italic;">
|
||||
|
||||
10
layouts/partials/footer.html
Normal file
10
layouts/partials/footer.html
Normal file
@ -0,0 +1,10 @@
|
||||
{{ if (isset .Params "next") }}
|
||||
<a href="/{{ .Params.next }}" class="next">→</a>
|
||||
{{ end }}
|
||||
<footer>
|
||||
<p>© <a href="{{ .Site.Params.home }}">{{ .Site.Params.author }}</a> {{ .Site.Params.copyright }}</p>
|
||||
</footer>
|
||||
<script src="/js/footnotes.js"></script>
|
||||
{{ range .Site.Params.customJS }}
|
||||
<script src="{{ . }}"></script>
|
||||
{{ end }}
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user