share.html 813 B

12345678910111213141516
  1. {{- $s := i18n "share_on" }}
  2. <div class="post_share">
  3. {{ $s }}:
  4. <a href="https://twitter.com/intent/tweet?text={{ .Title }}&url={{ .Permalink }}&tw_p=tweetbutton" class="twitter" title="{{ $s }} Twitter" target="_blank" rel="nofollow">
  5. {{ partial "sprite" (dict "icon" "twitter") }}
  6. </a>
  7. <a href="https://www.facebook.com/sharer.php?u={{ .Permalink }}&t={{ .Title }}" class="facebook" title="{{ $s }} Facebook" target="_blank" rel="nofollow">
  8. {{ partial "sprite" (dict "icon" "facebook") }}
  9. </a>
  10. <a href="#linkedinshare" id = "linkedinshare" class="linkedin" title="{{ $s }} LinkedIn" rel="nofollow">
  11. {{ partial "sprite" (dict "icon" "linkedin") }}
  12. </a>
  13. <a href="{{ .Permalink }}" title="Copy Link" class="link link_yank">
  14. {{ partial "sprite" (dict "icon" "copy") }}
  15. </a>
  16. </div>