Sfoglia il codice sorgente

Merge pull request #255 from budparr/198-add-share-links

Add sharing links for the posts
tags/2.6.0
Regis Philibert 5 anni fa
parent
commit
81bc231eb4
Nessun account collegato all'indirizzo email del committer

+ 1
- 0
exampleSite/content/post/chapter-6.md Vedi File

@@ -4,6 +4,7 @@ description: "Esmeralda"
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

+ 3
- 1
layouts/_default/single.html Vedi File

@@ -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`

+ 26
- 0
layouts/partials/social-share.html Vedi 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 }}

Loading…
Annulla
Salva