{{- /*
Social share buttons renderer.
- Reads share switches from merged theme/page params.
- Outputs provider-specific sharer attributes for supported platforms.
@param {Object} .Page - Current page context
*/ -}}
{{- $share := dict "Page" . "Key" "share" | partial "function/param.html" | default dict -}}
{{- if $share.enable -}}
{{- $title := cond (.Param "capitalize_titles") (title .Title) .Title -}}
{{- $cover := dict "Page" . "Preview" true "Build" true | partial "function/get-cover.html" -}}
{{- $twitterVia := "" -}}
{{- with .Site.Params.social.twitter -}}
{{- if reflect.IsMap . -}}
{{- $twitterVia = .creator | default .id -}}
{{- else -}}
{{- $twitterVia = . -}}
{{- end -}}
{{- end -}}
{{- /* 001: Twitter */ -}}
{{- if $share.Twitter -}}
{{- dict "Class" "fa-brands fa-x-twitter" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 002: Facebook */ -}}
{{- if $share.Facebook -}}
{{- dict "Class" "fa-brands fa-facebook-square" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 003: Linkedin */ -}}
{{- if $share.Linkedin -}}
{{- dict "Class" "fa-brands fa-linkedin" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 004: WhatsApp */ -}}
{{- if $share.Whatsapp -}}
{{- dict "Class" "fa-brands fa-whatsapp" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 005: Viber */ -}}
{{- if $share.Viber -}}
{{- dict "Class" "fa-brands fa-viber" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 006: Pinterest */ -}}
{{- if $share.Pinterest -}}
{{- dict "Class" "fa-brands fa-pinterest" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 007: Tumblr */ -}}
{{- if $share.Tumblr -}}
{{- dict "Class" "fa-brands fa-tumblr" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 008: Hacker News */ -}}
{{- if $share.Hackernews -}}
{{- dict "Class" "fa-brands fa-hacker-news" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 009: Reddit */ -}}
{{- if $share.Reddit -}}
{{- dict "Class" "fa-brands fa-reddit" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 010: VK */ -}}
{{- if $share.VK -}}
{{- dict "Class" "fa-brands fa-vk" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 011: Buffer */ -}}
{{- if $share.Buffer -}}
{{- dict "Class" "fa-brands fa-buffer" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 012: Xing */ -}}
{{- if $share.Xing -}}
{{- dict "Class" "fa-brands fa-xing" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 013: Line */ -}}
{{- if $share.Line -}}
{{- dict "Simpleicons" "line" "Prefix" (.Site.Store.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 014: Instapaper */ -}}
{{- if $share.Instapaper -}}
{{- dict "Simpleicons" "instapaper" "Prefix" (.Site.Store.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 015: Pocket */ -}}
{{- if $share.Pocket -}}
{{- dict "Class" "fa-brands fa-get-pocket" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 016: Flipboard */ -}}
{{- if $share.Flipboard -}}
{{- dict "Class" "fa-brands fa-flipboard" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 017: 微博 */ -}}
{{- if $share.Weibo -}}
{{- dict "Class" "fa-brands fa-weibo" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 018: Myspace */ -}}
{{- if $share.Myspace -}}
{{- dict "Simpleicons" "myspace" "Prefix" (.Site.Store.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 019: Blogger */ -}}
{{- if $share.Blogger -}}
{{- dict "Class" "fa-brands fa-blogger" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 020: 百度 */ -}}
{{- if $share.Baidu -}}
{{- dict "Simpleicons" "baidu" "Prefix" (.Site.Store.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 021: OK.RU */ -}}
{{- if $share.Odnoklassniki -}}
{{- dict "Class" "fa-brands fa-odnoklassniki" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 022: Evernote */ -}}
{{- if $share.Evernote -}}
{{- dict "Class" "fa-brands fa-evernote" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 023: Skype */ -}}
{{- if $share.Skype -}}
{{- dict "Class" "fa-brands fa-skype" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 024: Trello */ -}}
{{- if $share.Trello -}}
{{- dict "Class" "fa-brands fa-trello" | partial "plugin/icon.html" -}}
{{ end -}}
{{- /* 025: Mix */ -}}
{{- if $share.Mix -}}
{{- dict "Class" "fa-brands fa-mix" | partial "plugin/icon.html" -}}
{{ end -}}
{{- $shareArray := slice
"Twitter"
"Facebook"
"Linkedin"
"Whatsapp"
"Viber"
"Pinterest"
"Tumblr"
"Hackernews"
"Reddit"
"VK"
"Buffer"
"Xing"
"Line"
"Instapaper"
"Pocket"
"Flipboard"
"Weibo"
"Myspace"
"Blogger"
"Baidu"
"Odnoklassniki"
"Evernote"
"Skype"
"Trello"
"Mix"
-}}
{{- range $shareArray -}}
{{- if index $share . -}}
{{- $.Store.Set "hasSharer" true -}}
{{- break -}}
{{- end -}}
{{- end -}}
{{- end -}}