diff --git a/README.md b/README.md index 62be9a6..f375bd3 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ In order to register a service to be used, user must add an `ananke_socials` par - name*: It matches the built-in service reference (Ex: twitter, github) - url*: The url of the handle's profile on the service (Ex: https://twitter.com/theNewDynamic, https://github.com/ theNewDynamic) -- rel: Optional. Allows to add a `rel` attribute to the follow link. Useful for Mastodon verification which requires a `rel="me"` on the link. +- rel: (default: `noopener`) Controls the `rel` attribute of the "follow" link. Useful for Mastodon verification which requires a `rel="me"` on the link. ```yaml params: ananke_socials: @@ -145,7 +145,7 @@ params: url: https://github.com/theNewDynamic - name: mastodon url: https://social.example.com/@username - rel: me + rel: me noopener ``` If user needs to overwrite default `color` and `label` of the service, they simply need to append the following to the entry: diff --git a/layouts/partials/social-follow.html b/layouts/partials/social-follow.html index f990ac7..b53318f 100644 --- a/layouts/partials/social-follow.html +++ b/layouts/partials/social-follow.html @@ -1,7 +1,8 @@ {{ $socials := where (partialCached "func/socials/Get" "socials/Get") "follow" "!=" false }}
{{ range $socials }} - + {{ $rel := .rel | default "noopener" }} + {{ with .icon }} {{ . }} {{ else }}