28 lines
1.3 KiB
HTML
28 lines
1.3 KiB
HTML
![]() |
{{ $site := .Site }}
|
||
|
{{ $title := .Title }}
|
||
|
{{ $url := printf "%s" .URL | absLangURL }}
|
||
|
{{ $body := print $title ", by " .Site.Title "\n" .Params.description "\n\n" $url "\n" }}
|
||
|
{{ $icon_size := "32px" }}
|
||
|
{{ $test_url := printf "%s" "https://www.google.com/" }}
|
||
|
{{ if .Params.social_share.display_social_share }}
|
||
|
{{ $social := .Params.social_share.social_items }}
|
||
|
<div id="sharing" class="mt3">
|
||
|
{{ with $social.facebook }}
|
||
|
<a href="http://www.facebook.com/sharer.php?u={{ $url }}" class="facebook no-underline" aria-label="share on Facebook">
|
||
|
{{ partialCached "svg/facebook.svg" (dict "size" $icon_size) $icon_size }}
|
||
|
</a>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ with $social.twitter }}
|
||
|
<a href="http://twitter.com/share?url={{ $url }}&text={{ $title }}&via={{with $site.Social.twitter }}{{ . }}{{ end }}" class="twitter no-underline" aria-label="share on Twitter">
|
||
|
{{ partialCached "svg/twitter.svg" (dict "size" $icon_size) $icon_size }}
|
||
|
</a>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ with $social.linkedin }}
|
||
|
<a href="http://www.linkedin.com/shareArticle?mini=true&url={{ $url }}&title={{ $title }}" class="linkedin no-underline" aria-label="share on LinkedIn">
|
||
|
{{ partialCached "svg/linkedin.svg" (dict "size" $icon_size) $icon_size }}
|
||
|
</a>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
{{ end }}
|