diff options
author | miraikumiko <miraikumiko@disroot.org> | 2025-03-14 23:07:47 +0100 |
---|---|---|
committer | miraikumiko <miraikumiko@disroot.org> | 2025-03-14 23:07:47 +0100 |
commit | 663eb10a3fa3ab1ef908571522c86d89f2c7f679 (patch) | |
tree | dbfb634720f12d21983b8a71db8822d7d4927f43 | |
parent | fdcb61d1cbd6c605e67aeef502df102cd0244fc5 (diff) | |
download | miraikumiko.com-663eb10a3fa3ab1ef908571522c86d89f2c7f679.tar.gz miraikumiko.com-663eb10a3fa3ab1ef908571522c86d89f2c7f679.tar.bz2 |
Updated
-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 --> |