Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

social-share.html 1.3KB

12345678910111213141516171819202122232425262728
  1. {{ $site := .Site }}
  2. {{ $title := .Title }}
  3. {{ $url := printf "%s" .URL | absLangURL }}
  4. {{ $body := print $title ", by " .Site.Title "\n" .Params.description "\n\n" $url "\n" }}
  5. {{ $icon_size := "32px" }}
  6. {{ $test_url := printf "%s" "https://www.google.com/" }}
  7. {{ if .Params.social_share.display_social_share }}
  8. {{ $social := .Params.social_share.social_items }}
  9. <div id="sharing" class="mt3">
  10. {{ with $social.facebook }}
  11. <a href="http://www.facebook.com/sharer.php?u={{ $url }}" class="facebook no-underline" aria-label="share on Facebook">
  12. {{ partialCached "svg/facebook.svg" (dict "size" $icon_size) $icon_size }}
  13. </a>
  14. {{ end }}
  15. {{ with $social.twitter }}
  16. <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">
  17. {{ partialCached "svg/twitter.svg" (dict "size" $icon_size) $icon_size }}
  18. </a>
  19. {{ end }}
  20. {{ with $social.linkedin }}
  21. <a href="http://www.linkedin.com/shareArticle?mini=true&url={{ $url }}&title={{ $title }}" class="linkedin no-underline" aria-label="share on LinkedIn">
  22. {{ partialCached "svg/linkedin.svg" (dict "size" $icon_size) $icon_size }}
  23. </a>
  24. {{ end }}
  25. </div>
  26. {{ end }}