SEO
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
baseURL = "/"
|
||||
baseURL = "https://makyo.ink/"
|
||||
languageCode = "en-us"
|
||||
title = "The Writing of Madison Scott-Clary"
|
||||
|
||||
|
||||
@ -12,6 +12,7 @@ tags:
|
||||
- Transition
|
||||
- About furry
|
||||
title: Growth
|
||||
ogimg: /assets/img/growth.jpg
|
||||
---
|
||||
|
||||

|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
type: rt
|
||||
title: Arcana - A Tarot Anthology
|
||||
img: publications/04-emperor.jpg
|
||||
ogimg: /assets/img/publications/arcana.jpg
|
||||
---
|
||||
|
||||
<img src="/assets/img/publications/arcana.jpg" style="margin: 0 auto; display: block; width: 500px; max-width: 100%;" />
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
---
|
||||
type: rt
|
||||
title: Restless Town
|
||||
ogimg: /assets/img/publications/restless-town.jpg
|
||||
---
|
||||
|
||||
<img src="/assets/img/publications/restless-town.jpg" style="margin: 0 auto; display: block; width: 500px; max-width: 100%;" />
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
---
|
||||
type: rt
|
||||
title: Rum and Coke - Three Short Stories from a Furry Convention
|
||||
ogimg: /assets/img/publications/rum-and-coke.jpg
|
||||
---
|
||||
|
||||
<img src="/assets/img/publications/rum-and-coke.jpg" style="margin: 0 auto; display: block; width: 500px; max-width: 100%;" />
|
||||
|
||||
@ -14,7 +14,9 @@
|
||||
{{ end }}
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta property="og:image" content="">
|
||||
|
||||
{{- partial "seo.html" . -}}
|
||||
|
||||
<link rel="shortcut icon" href="/assets/img/favicon/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="/assets/img/favicon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/img/favicon/apple-touch-icon-72x72.png">
|
||||
|
||||
26
layouts/partials/seo.html
Normal file
26
layouts/partials/seo.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!-- OpenGraph metadata -->
|
||||
<meta property="og:title" content="{{ if .Params.title }}{{.Params.title }} | {{end}}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: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:url" content="{{ .Permalink }}" />
|
||||
<meta property="og:description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}The Writing of Madison Scott-Clary{{ end }}" />
|
||||
|
||||
<!-- 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 }} | {{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:image" content="{{ if .Params.ogimg }}{{ .Params.ogimg | absURL }}{{ else }}{{ if .Params.img }}{{ .Params.img | absURL }}{{ else }}{{ "/assets/img/headshot.jpg" | absURL }}{{ end }}{{ end }}" />
|
||||
|
||||
<!-- 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 }} | {{end}}The Writing of Madison Scott-Clary",
|
||||
"description": "{{ if .Params.description }}{{ .Params.description }}{{ else }}The Writing of Madison Scott-Clary{{ end }}",
|
||||
"url": "{{ .Permalink }}"
|
||||
}
|
||||
</script>
|
||||
@ -14,6 +14,9 @@
|
||||
<meta name="description" content="{{ . | plainify }}">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{- partial "seo.html" . -}}
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta property="og:image" content="">
|
||||
|
||||
Reference in New Issue
Block a user