diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/footer.html | 3 | ||||
-rw-r--r-- | layouts/partials/seo_tags.html | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..0bb46f7 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,3 @@ +<small> + {{ .Site.Copyright }} | <a rel="me" href="mailto:miraikumiko@disroot.org">Email</a> | <a rel="me" href="https://cr8r.gg/@miraikumiko">Mastodon</a> | <a rel="me" href="https://github.com/miraikumiko">Github</a> +</small> diff --git a/layouts/partials/seo_tags.html b/layouts/partials/seo_tags.html index 3590737..e18bf8d 100644 --- a/layouts/partials/seo_tags.html +++ b/layouts/partials/seo_tags.html @@ -3,7 +3,7 @@ <meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" /> <meta name="author" content="{{ .Site.Params.Author.name }}" /> <meta name="keywords" content="{{ if .IsPage}}{{ range $index, $tag := .Params.tags }}{{ $tag }},{{ end }}{{ else }}{{ range $plural, $terms := .Site.Taxonomies }}{{ range $term, $val := $terms }}{{ printf "%s," $term }}{{ end }}{{ end }}{{ end }}" /> -<link rel="me" href="https://cr8r.gg/@miraikumiko" /> +<meta name="fediverse:creator" content="@miraikumiko@cr8r.gg" /> <!-- Only generate social card if: --> <!-- - generateSocialCard = true --> |