mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Regis Philibert
06.33.2020 81bc231eb49904abff6657c92ce472b6af4b069a
Merge pull request #255 from budparr/198-add-share-links

Add sharing links for the posts
2 files modified
1 files added
31 ■■■■■ changed files
exampleSite/content/post/chapter-6.md 1 ●●●● patch | view | raw | blame | history
layouts/_default/single.html 4 ●●● patch | view | raw | blame | history
layouts/partials/social-share.html 26 ●●●●● patch | view | raw | blame | history
exampleSite/content/post/chapter-6.md
@@ -4,6 +4,7 @@
featured_image: "/images/esmeralda.jpg"
tags: []
title: "Chapter VI: Esmeralda"
disable_share: false
---
We are delighted to be able to inform the reader, that during the whole of
this scene, Gringoire and his piece had stood firm. His actors, spurred on
layouts/_default/single.html
@@ -14,7 +14,8 @@
          */}}
        {{with .CurrentSection.Title }}{{. | upper }}{{end}}
      </aside>
      <h1 class="f1 athelas mb1">
      {{ partial "social-share.html" . }}
      <h1 class="f1 athelas mt3 mb1">
        {{- .Title -}}
      </h1>
      {{ with .Params.author }}
@@ -32,6 +33,7 @@
      <time class="f6 mv4 dib tracked" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
        {{- .Date.Format "January 2, 2006" -}}
      </time>
      {{/*
          Show "reading time" and "word count" but only if one of the following are true:
          1) A global config `params` value is set `show_reading_time = true`
layouts/partials/social-share.html
New file
@@ -0,0 +1,26 @@
{{ $title := .Title }}
{{ $url := printf "%s" .URL | absLangURL }}
{{ $icon_size := "32px" }}
{{ if not .Params.disable_share }}
  <div id="sharing" class="mt3">
    {{ $facebook_href := printf "https://www.facebook.com/sharer.php?u=%s" $url }}
    <a href="{{ $facebook_href }}" class="facebook no-underline" aria-label="share on Facebook">
      {{ partialCached "svg/facebook.svg" (dict "size" $icon_size) $icon_size }}
    </a>
    {{ $twitter_href := printf "https://twitter.com/share?url=%s&text=%s" $url $title }}
    {{ with .Site.Social.twitter }}
      {{ $twitter_href = printf "%s&via=%s" $twitter_href . }}
    {{ end }}
    <a href="{{ $twitter_href }}" class="twitter no-underline" aria-label="share on Twitter">
      {{ partialCached "svg/twitter.svg" (dict "size" $icon_size) $icon_size }}
    </a>
    {{ $linkedin_href := printf "https://www.linkedin.com/shareArticle?mini=true&url=%s&title=%s" $url $title }}
    <a href="{{ $linkedin_href }}" class="linkedin no-underline" aria-label="share on LinkedIn">
      {{ partialCached "svg/linkedin.svg" (dict "size" $icon_size) $icon_size }}
    </a>
  </div>
{{ end }}