Eigengrau

This commit is contained in:
Madison Scott-Clary
2019-11-30 12:42:45 -08:00
parent 605a8c00df
commit fc372d6878
10 changed files with 101 additions and 16 deletions

View File

@ -10,3 +10,6 @@ title = "The Writing of Madison Scott-Clary"
[permalinks] [permalinks]
post = "/:filename/" post = "/:filename/"
[markup.goldmark.renderer]
unsafe= true

View File

@ -8,6 +8,15 @@ permalink: /publications/
<h1>Publications</h1> <h1>Publications</h1>
<ol class="post-card-box clearfix"> <ol class="post-card-box clearfix">
<li>
<div class="post-card">
<a href="eigengrau" class="post-card-image" style="background-image: url(/assets/img/publications/eigengrau.png )">
</a>
<div class="post-card-body">
<a href="eigengrau" class="post-card-link"><h3 class="post-card-title">Eigengrau</h3></a>
</div>
</div>
</li>
<li> <li>
<div class="post-card"> <div class="post-card">
<a href="restless-town" class="post-card-image" style="background-image: url(/assets/img/publications/restless-town.jpg )"> <a href="restless-town" class="post-card-image" style="background-image: url(/assets/img/publications/restless-town.jpg )">

View File

@ -0,0 +1,49 @@
---
type: page
title: '<span class="pink">Eigen</span><span class="gray">grau</span>'
extracss: /publications/eigengrau/main.css
---
<h2 class="gray">Poems<br />2015 to 2020</h2>
<h3><span class="pink">Madison</span> <span class="gray">Scott-Clary</span></h3>
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
<div class="quip verse">Her hair is tied with a ribbon
Saying "<span class="gray">This is not for you.</span>"
She wears a pendant of stamped brass
Saying "<span class="gray">Non sum qualis eram.</span>"
"<span class="gray">I have been a hero since birth,</span>"
She tells herself,
As though that will somehow
Explain her scars.</div>

View File

@ -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;
}

View File

@ -1,7 +1,8 @@
--- ---
type: rt type: page
title: Restless Town title: Restless Town
ogimg: /assets/img/publications/restless-town.jpg ogimg: /assets/img/publications/restless-town.jpg
extracss: /publications/restless-town/main.css
--- ---
<img src="/assets/img/publications/restless-town.jpg" style="margin: 0 auto; display: block; width: 500px; max-width: 100%;" /> <img src="/assets/img/publications/restless-town.jpg" style="margin: 0 auto; display: block; width: 500px; max-width: 100%;" />

View File

@ -1,13 +1,6 @@
@@font-face { @import url('https://fonts.googleapis.com/css?family=Spectral');
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');
.header-page h1, h2 { .header-page h1, h2 {
font-family: "Tom's New Roman", sans-serif !important;
font-weight: bold;
font-size: 3rem;
display: none; display: none;
} }

View File

@ -8,9 +8,9 @@
<div class="wrapper{{ if .Params.img }} with-image{{ end }}"> <div class="wrapper{{ if .Params.img }} with-image{{ end }}">
<div class="page-content"> <div class="page-content">
<div class="header-page"> <div class="header-page">
<h1 class="page-title">{{ .Title }}</h1> <h1 class="page-title">{{ .Title | safeHTML }}</h1>
</div> </div>
{{ .Content }} {{ .Content | safeHTML }}
<div class="page-footer"> <div class="page-footer">
{{ partial "donate.html" }} {{ partial "donate.html" }}
</div> </div>

View File

@ -4,7 +4,7 @@
{{ if .IsHome }} {{ if .IsHome }}
{{ $title = .Site.Title }} {{ $title = .Site.Title }}
{{ end }} {{ end }}
<title>{{ $title }}</title> <title>{{ $title | plainify }}</title>
{{ .Hugo.Generator }} {{ .Hugo.Generator }}
<link rel="canonical" href="{{ .Permalink }}"> <link rel="canonical" href="{{ .Permalink }}">
{{ if .IsHome }} {{ if .IsHome }}
@ -14,7 +14,7 @@
{{ end }} {{ end }}
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
{{- partial "seo.html" . -}} {{- partial "seo.html" . -}}
<link rel="shortcut icon" href="/assets/img/favicon/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="/assets/img/favicon/favicon.ico" type="image/x-icon">
@ -35,4 +35,7 @@
<!-- Styles --> <!-- Styles -->
{{ $style := resources.Get "css/main.scss" | resources.ToCSS }} {{ $style := resources.Get "css/main.scss" | resources.ToCSS }}
<link rel="stylesheet" href="{{ $style.Permalink }}"> <link rel="stylesheet" href="{{ $style.Permalink }}">
{{ with .Params.extracss }}
<link rel="stylesheet" href="{{.}}">
{{ end }}
</head> </head>

View File

@ -1,5 +1,5 @@
<!-- OpenGraph metadata --> <!-- OpenGraph metadata -->
<meta property="og:title" content="{{ if .Params.title }}{{.Params.title }} | {{end}}The Writing of Madison Scott-Clary" /> <meta property="og:title" content="{{ if .Params.title }}{{.Params.title | plainify }} | {{end}}The Writing of Madison Scott-Clary" />
<meta property="og:site_name" content="The Writing of Madison Scott-Clary" /> <meta property="og:site_name" content="The Writing of Madison Scott-Clary" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:image" content="{{ if .Params.ogimg }}{{ .Params.ogimg | absURL }}{{ else }}{{ if .Params.img }}{{ .Params.img | absURL }}{{ else }}{{ "/assets/img/headshot.jpg" | absURL }}{{ end }}{{ end }}" /> <meta property="og:image" content="{{ if .Params.ogimg }}{{ .Params.ogimg | absURL }}{{ else }}{{ if .Params.img }}{{ .Params.img | absURL }}{{ else }}{{ "/assets/img/headshot.jpg" | absURL }}{{ end }}{{ end }}" />
@ -9,7 +9,7 @@
<!-- Twitter Card metadata --> <!-- Twitter Card metadata -->
<meta name="twitter:card" content="summary" /> <meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@makyo_writes" /> <meta name="twitter:site" content="@makyo_writes" />
<meta name="twitter:title" content="{{ if .Params.title }}{{.Params.title }} | {{end}}The Writing of Madison Scott-Clary" /> <meta name="twitter:title" content="{{ if .Params.title }}{{.Params.title | plainify }} | {{end}}The Writing of Madison Scott-Clary" />
<meta name="twitter:description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}The Writing of Madison Scott-Clary{{ end }}" /> <meta name="twitter:description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}The Writing of Madison Scott-Clary{{ end }}" />
<meta name="twitter:image" content="{{ if .Params.ogimg }}{{ .Params.ogimg | absURL }}{{ else }}{{ if .Params.img }}{{ .Params.img | absURL }}{{ else }}{{ "/assets/img/headshot.jpg" | absURL }}{{ end }}{{ end }}" /> <meta name="twitter:image" content="{{ if .Params.ogimg }}{{ .Params.ogimg | absURL }}{{ else }}{{ if .Params.img }}{{ .Params.img | absURL }}{{ else }}{{ "/assets/img/headshot.jpg" | absURL }}{{ end }}{{ end }}" />
@ -19,7 +19,7 @@
"@context": "http://schema.org", "@context": "http://schema.org",
"@type": "WebSite", "@type": "WebSite",
"name": "The Writing of Madison Scott-Clary", "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 }}", "description": "{{ if .Params.description }}{{ .Params.description }}{{ else }}The Writing of Madison Scott-Clary{{ end }}",
"url": "{{ .Permalink }}" "url": "{{ .Permalink }}"
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB