From cd7bdb109862deb85cfa6211d9a89d8dc78e4f69 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Mon, 13 Jan 2025 10:31:25 +0100 Subject: [PATCH] Ajout validation mastodon --- config.toml | 2 +- layouts/partials/social.html | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/social.html diff --git a/config.toml b/config.toml index 3833902..3d84397 100644 --- a/config.toml +++ b/config.toml @@ -81,6 +81,6 @@ enableRobotsTXT = true footer = "OzK" socialIcons = [ - {name = "mastodon", url = "https://mastodon.social/@ozk"}, + {name = "mastodon", url = "https://mastodon.social/@ozk", rel = "me"}, {name = "mail", url = "mailto:pot.punkuezrevo@overzeuknup.top"}, ] diff --git a/layouts/partials/social.html b/layouts/partials/social.html new file mode 100644 index 0000000..813695a --- /dev/null +++ b/layouts/partials/social.html @@ -0,0 +1,5 @@ +{{ range .Site.Params.socialIcons }} + + {{ .name }} + +{{ end }}