theme(fix): deprecated: .Site.Social

Signed-off-by: Patrick Kollitsch <patrick@davids-neighbour.com>
This commit is contained in:
Patrick Kollitsch 2024-09-19 15:41:00 +07:00
parent 321680f6ee
commit 41d183a034
No known key found for this signature in database
GPG Key ID: 3F549359A1CA269A
3 changed files with 6 additions and 2 deletions

View File

@ -207,6 +207,7 @@ params:
label: Facebook
follow: false
- name: twitter
username: theNewDynamic
url: https://twitter.com/theNewDynamic
label: TND Twitter
```

View File

@ -39,3 +39,4 @@ enableRobotsTXT = true
[[params.ananke_socials]]
name = "twitter"
url = "https://twitter.com/GoHugoIO"
username = "GoHugoIO"

View File

@ -3,8 +3,10 @@
{{ $facebook_href := printf "https://www.facebook.com/sharer.php?u=%s" $url }}
{{ $twitter_href := printf "https://twitter.com/intent/tweet?url=%s&text=%s" $url $title }}
{{ with site.Social.twitter }}
{{ $twitter_href = printf "%s&via=%s" $twitter_href . }}
{{ $twitterSetup := first 1 (where site.Params.ananke_socials "name" "twitter") }}
{{ with index $twitterSetup 0 }}
{{ $twitter_href = printf "%s&via=%s" $twitter_href .username }}
{{ end }}
{{ $linkedin_href := printf "https://www.linkedin.com/shareArticle?mini=true&url=%s&title=%s" $url $title }}
{{ $hrefs := dict "facebook" $facebook_href "twitter" $twitter_href "linkedin" $linkedin_href }}