You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

social-share.html 1.4KB

12345678910111213141516171819202122232425262728293031
  1. {{ $title := .Title }}
  2. {{ $url := printf "%s" .Permalink | absLangURL }}
  3. {{ $icon_size := "32px" }}
  4. {{ if not .Params.disable_share }}
  5. <div id="sharing" class="mt3">
  6. {{ $facebook_href := printf "https://www.facebook.com/sharer.php?u=%s" $url }}
  7. <a href="{{ $facebook_href }}" class="facebook no-underline" aria-label="share on Facebook">
  8. {{ partialCached "svg/facebook.svg" (dict "size" $icon_size) $icon_size }}
  9. </a>
  10. {{ $twitter_href := printf "https://twitter.com/share?url=%s&text=%s" $url $title }}
  11. {{ with .Site.Social.twitter }}
  12. {{ $twitter_href = printf "%s&via=%s" $twitter_href . }}
  13. {{ end }}
  14. <a href="{{ $twitter_href }}" class="twitter no-underline" aria-label="share on Twitter">
  15. {{ partialCached "svg/twitter.svg" (dict "size" $icon_size) $icon_size }}
  16. </a>
  17. {{ $linkedin_href := printf "https://www.linkedin.com/shareArticle?mini=true&url=%s&title=%s" $url $title }}
  18. <a href="{{ $linkedin_href }}" class="linkedin no-underline" aria-label="share on LinkedIn">
  19. {{ partialCached "svg/linkedin.svg" (dict "size" $icon_size) $icon_size }}
  20. </a>
  21. {{ $whatsapp_href := printf "https://api.whatsapp.com/send?text=%s&url=%s" $url}}
  22. <a href="{{ $whatsapp_href }}" class="whatsapp no-underline" aria-label="share on Whatsapp">
  23. {{ partialCached "svg/whatsapp.svg" (dict "size" $icon_size) $icon_size }}
  24. </a>
  25. </div>
  26. {{ end }}