diff --git a/config.toml b/config.toml index 4ccdac2..e325f6a 100644 --- a/config.toml +++ b/config.toml @@ -10,3 +10,6 @@ title = "The Writing of Madison Scott-Clary" [permalinks] post = "/:filename/" + +[markup.goldmark.renderer] + unsafe= true diff --git a/content/publications/_index.html b/content/publications/_index.html index 18608a0..775b13d 100644 --- a/content/publications/_index.html +++ b/content/publications/_index.html @@ -8,6 +8,15 @@ permalink: /publications/

Publications

    +
  1. +
    + + +
    +

    Eigengrau

    +
    +
    +
  2. diff --git a/content/publications/eigengrau/index.md b/content/publications/eigengrau/index.md new file mode 100644 index 0000000..f3b5ae7 --- /dev/null +++ b/content/publications/eigengrau/index.md @@ -0,0 +1,49 @@ +--- +type: page +title: 'Eigengrau' +extracss: /publications/eigengrau/main.css +--- + +

    Poems
    2015 to 2020

    + +

    Madison Scott-Clary

    + +With topics ranging from gender to mental health, flower language to dogs, these five years worth of selected poems by Madison Scott-Clary represent some of her best works, now collected in to one book. ***Coming January 1, 2020!*** + +* Poems from *Missives* + * Though the flow're may bloom ere long + * Delay, then, the morn + * Thy gift + * You find me at a disadvantage + * A rose, single, now blooming +* Unimportant verse about important people +* Collect haiku +* Mental Health + * There is too much fire in me + * Heligoland + * Bruise vision + * Beneath her coat was a whole identity + * Asertu + * Numeno + * Rush +* Gender + * Somehow, she's me + * Post-op images + * Fair and square +* Miscellany + * The dogs assure me + * A year starts not on January first + * Growth + * When I fall, I will remain whole + * I know there's rest + * Every time I fall + * Meaning & Self + +
    Her hair is tied with a ribbon + Saying "This is not for you." +She wears a pendant of stamped brass + Saying "Non sum qualis eram." +"I have been a hero since birth," + She tells herself, + As though that will somehow + Explain her scars.
    diff --git a/content/publications/eigengrau/main.css b/content/publications/eigengrau/main.css new file mode 100644 index 0000000..1d80469 --- /dev/null +++ b/content/publications/eigengrau/main.css @@ -0,0 +1,27 @@ +@import url('https://fonts.googleapis.com/css?family=Inknut+Antiqua'); + +.pink, .quip { + color: #db7de3; +} + +.gray { + color: #dfdfdf; +} + +.quip { + max-width: 395px; + margin: 0 auto; +} + +h1, h2, h3, h4, h5, h6 { + text-align: center; + font-family: "Inknut Antiqua", serif !important; +} + +.quip { + font-family: "Inknut Antiqua", serif !important; +} + +.page-content { + background-color: #16161d; +} diff --git a/content/publications/restless-town/index.md b/content/publications/restless-town/index.md index 29ee602..f95addc 100644 --- a/content/publications/restless-town/index.md +++ b/content/publications/restless-town/index.md @@ -1,7 +1,8 @@ --- -type: rt +type: page title: Restless Town ogimg: /assets/img/publications/restless-town.jpg +extracss: /publications/restless-town/main.css --- diff --git a/content/publications/restless-town/main.css b/content/publications/restless-town/main.css index aec164f..57976b6 100644 --- a/content/publications/restless-town/main.css +++ b/content/publications/restless-town/main.css @@ -1,13 +1,6 @@ -@@font-face { - font-family: "Tom's New Roman"; - src: url('tomnr.woff') format('woff'), url('tomnr.woff2') format('woff2'); -} -@import url('https://fonts.googleapis.com/css?family=Gentium+Basic|Spectral&display=swap'); +@import url('https://fonts.googleapis.com/css?family=Spectral'); .header-page h1, h2 { - font-family: "Tom's New Roman", sans-serif !important; - font-weight: bold; - font-size: 3rem; display: none; } diff --git a/layouts/page/single.html b/layouts/page/single.html index 7c7620a..7f1a625 100644 --- a/layouts/page/single.html +++ b/layouts/page/single.html @@ -8,9 +8,9 @@
    -

    {{ .Title }}

    +

    {{ .Title | safeHTML }}

    - {{ .Content }} + {{ .Content | safeHTML }} diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 33447b5..2e8e382 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -4,7 +4,7 @@ {{ if .IsHome }} {{ $title = .Site.Title }} {{ end }} - {{ $title }} + {{ $title | plainify }} {{ .Hugo.Generator }} {{ if .IsHome }} @@ -14,7 +14,7 @@ {{ end }} - + {{- partial "seo.html" . -}} @@ -35,4 +35,7 @@ {{ $style := resources.Get "css/main.scss" | resources.ToCSS }} + {{ with .Params.extracss }} + + {{ end }} diff --git a/layouts/partials/seo.html b/layouts/partials/seo.html index c2de61f..53b26d7 100644 --- a/layouts/partials/seo.html +++ b/layouts/partials/seo.html @@ -1,5 +1,5 @@ - + @@ -9,7 +9,7 @@ - + @@ -19,7 +19,7 @@ "@context": "http://schema.org", "@type": "WebSite", "name": "The Writing of Madison Scott-Clary", - "headline": "{{ if .Params.title }}{{.Params.title }} | {{end}}The Writing of Madison Scott-Clary", + "headline": "{{ if .Params.title }}{{.Params.title | plainify }} | {{end}}The Writing of Madison Scott-Clary", "description": "{{ if .Params.description }}{{ .Params.description }}{{ else }}The Writing of Madison Scott-Clary{{ end }}", "url": "{{ .Permalink }}" } diff --git a/static/assets/img/publications/eigengrau.png b/static/assets/img/publications/eigengrau.png new file mode 100644 index 0000000..66015e9 Binary files /dev/null and b/static/assets/img/publications/eigengrau.png differ