mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-07 08:32:42 +00:00
theme(fix): deprecated: .Site.Social
Signed-off-by: Patrick Kollitsch <patrick@davids-neighbour.com>
This commit is contained in:
parent
321680f6ee
commit
41d183a034
@ -207,6 +207,7 @@ params:
|
||||
label: Facebook
|
||||
follow: false
|
||||
- name: twitter
|
||||
username: theNewDynamic
|
||||
url: https://twitter.com/theNewDynamic
|
||||
label: TND Twitter
|
||||
```
|
||||
|
@ -39,3 +39,4 @@ enableRobotsTXT = true
|
||||
[[params.ananke_socials]]
|
||||
name = "twitter"
|
||||
url = "https://twitter.com/GoHugoIO"
|
||||
username = "GoHugoIO"
|
||||
|
@ -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 }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user