Refactor social share buttons config

This commit is contained in:
mountainbug95 2020-02-05 11:30:00 -06:00
parent 2e7e343ce2
commit 2cf4d180fa
No known key found for this signature in database
GPG key ID: 3EEE76B99FDF9A40
7 changed files with 12 additions and 53 deletions

View file

@ -4,12 +4,6 @@ description: "The Grand Hall"
featured_image: "/images/Pope-Edouard-de-Beaumont-1844.jpg"
tags: ["scene"]
title: "Chapter I: The Grand Hall"
social_share:
display_social_share: true
social_items:
facebook: true
twitter: true
linkedin: true
---
Three hundred and forty-eight years, six months, and nineteen days ago

View file

@ -4,12 +4,6 @@ description: "Pierre Gringoire"
featured_image: ""
tags: []
title: "Chapter II: Pierre Gringoire"
social_share:
display_social_share: true
social_items:
facebook: true
twitter: true
linkedin: true
---
Nevertheless, as be harangued them, the satisfaction and admiration

View file

@ -4,12 +4,6 @@ description: "Monsieur the Cardinal"
featured_image: ""
tags: []
title: "Chapter III: Monsieur the Cardinal"
social_share:
display_social_share: true
social_items:
facebook: true
twitter: true
linkedin: true
---
Poor Gringoire! the din of all the great double petards of the Saint-Jean,

View file

@ -4,12 +4,6 @@ description: "Master Jacques Coppenole"
featured_image: ""
tags: ["scene"]
title: "Chapter IV: Master Jacques Coppenole"
social_share:
display_social_share: true
social_items:
facebook: true
twitter: true
linkedin: true
---
While the pensioner of Ghent and his eminence were exchanging very low
bows and a few words in voices still lower, a man of lofty stature, with a

View file

@ -4,12 +4,6 @@ description: "Quasimodo"
featured_image: ""
tags: []
title: "Chapter V: Quasimodo"
social_share:
display_social_share: true
social_items:
facebook: true
twitter: true
linkedin: true
---
In the twinkling of an eye, all was ready to execute Coppenoles idea. Bourgeois, scholars and law clerks all set to work. The little chapel situated opposite the marble table was selected for the scene of the grinning match. A pane broken in the pretty rose window above the door, left free a circle of stone through which it was agreed that the competitors should thrust their heads. In order to reach it, it was only necessary to mount upon a couple of hogsheads, which had been produced from I know not where, and perched one upon the other, after a fashion. It was settled that each candidate, man or woman (for it was possible to choose a female pope), should, for the sake of leaving the impression of his grimace fresh and complete, cover his face and remain concealed in the chapel until the moment of his appearance. In less than an instant, the chapel was crowded with competitors, upon whom the door was then closed.

View file

@ -4,12 +4,7 @@ description: "Esmeralda"
featured_image: "/images/esmeralda.jpg"
tags: []
title: "Chapter VI: Esmeralda"
social_share:
display_social_share: true
social_items:
facebook: true
twitter: true
linkedin: true
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

View file

@ -4,25 +4,19 @@
{{ $body := print $title ", by " .Site.Title "\n" .Params.description "\n\n" $url "\n" }}
{{ $icon_size := "32px" }}
{{ $test_url := printf "%s" "https://www.google.com/" }}
{{ if .Params.social_share.display_social_share }}
{{ $social := .Params.social_share.social_items }}
{{ if not .Params.disable_share }}
<div id="sharing" class="mt3">
{{ with $social.facebook }}
<a href="http://www.facebook.com/sharer.php?u={{ $url }}" class="facebook no-underline" aria-label="share on Facebook">
{{ partialCached "svg/facebook.svg" (dict "size" $icon_size) $icon_size }}
</a>
{{ end }}
{{ with $social.twitter }}
<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">
<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">
{{ partialCached "svg/twitter.svg" (dict "size" $icon_size) $icon_size }}
</a>
{{ end }}
{{ with $social.linkedin }}
<a href="http://www.linkedin.com/shareArticle?mini=true&url={{ $url }}&title={{ $title }}" class="linkedin no-underline" aria-label="share on LinkedIn">
{{ partialCached "svg/linkedin.svg" (dict "size" $icon_size) $icon_size }}
</a>
{{ end }}
</div>
{{ end }}