Switch to submodule
This commit is contained in:
@ -11,6 +11,7 @@ paginatePath = ""
|
|||||||
author = 'Madison Scott-Clary'
|
author = 'Madison Scott-Clary'
|
||||||
home = 'https://makyo.ink'
|
home = 'https://makyo.ink'
|
||||||
copyright = 2021
|
copyright = 2021
|
||||||
|
customCSS = ['wildness.css']
|
||||||
|
|
||||||
[markup.goldmark.renderer]
|
[markup.goldmark.renderer]
|
||||||
unsafe = true
|
unsafe = true
|
||||||
|
|||||||
34
layouts/partials/head.html
Normal file
34
layouts/partials/head.html
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<head>
|
||||||
|
<title>{{ if .Title }}{{ .Title }} | {{ end }}A Wildness of the Heart by Madison Scott-Clary</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/css/main.css" />
|
||||||
|
{{ range .Site.Params.customCSS }}
|
||||||
|
<link rel="stylesheet" type="text/css" href="{{ . | relURL }}" />
|
||||||
|
{{ end }}
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<!-- OpenGraph metadata -->
|
||||||
|
<meta property="og:title" content="{{ if .Params.title }}{{.Params.title | plainify }} | {{end}}A Wildness of the Heart" />
|
||||||
|
<meta property="og:site_name" content="A Wildness of the Heart | Madison Scott-Clary" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:image" content="{{ "/square.jpg" | absURL }}" />
|
||||||
|
<meta property="og:url" content="{{ .Permalink }}" />
|
||||||
|
<meta property="og:description" content="A Wildness of the Heart: Limerent Object and Other Stories by Madison Scott-Clary" />
|
||||||
|
|
||||||
|
<!-- Twitter Card metadata -->
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
<meta name="twitter:site" content="@makyo_writes" />
|
||||||
|
<meta name="twitter:title" content="{{ if .Params.title }}{{.Params.title | plainify }} | {{end}}A Wildness of the Heart" />
|
||||||
|
<meta name="twitter:description" content="A Wildness of the Heart: Limerent Object and Other Stories by Madison Scott-Clary" />
|
||||||
|
<meta name="twitter:image" content="{{ "/square.jpg" | absURL }}" />
|
||||||
|
|
||||||
|
<!-- JSON-LD metadata -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "http://schema.org",
|
||||||
|
"@type": "WebSite",
|
||||||
|
"name": "The Writing of Madison Scott-Clary",
|
||||||
|
"headline": "{{ if .Params.title }}{{.Params.title | plainify }} | {{end}}A Wildness of the Heart",
|
||||||
|
"description": "A Wildness of the Heart: Limerent Object and Other Stories by Madison Scott-Clary",
|
||||||
|
"url": "{{ .Permalink }}"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
3
layouts/partials/header.html
Normal file
3
layouts/partials/header.html
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<header>
|
||||||
|
<h1><a href="/">{{ .Site.Title }}<small>Limerent Object and other stories</small></a></h1>
|
||||||
|
</header>
|
||||||
BIN
static/tomnr.woff
Normal file
BIN
static/tomnr.woff
Normal file
Binary file not shown.
10
static/wildness.css
Normal file
10
static/wildness.css
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
@import url("https://fonts.googleapis.com/css?family=Gentium+Book+Basic");
|
||||||
|
@font-face {
|
||||||
|
font-family: "Tom's New Roman";
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
src: url("/tomnr.woff") format("woff");
|
||||||
|
}
|
||||||
|
header, footer, .title ul li p:first-of-type, ul.pagination, h1, h2 {
|
||||||
|
font-family: "Tom's New Roman", serif;
|
||||||
|
}
|
||||||
1
themes/maddybook
Submodule
1
themes/maddybook
Submodule
Submodule themes/maddybook added at f81a11a02d
Reference in New Issue
Block a user