mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-24 21:20:17 +01:00
Add basic sharing icons to the bottom of posts
By default they are on, but you can disable them by adding the following configuration value: [params.sharingicons] hide = true If this parameter is undefined (or "false") then the icons will be shown. Furthermore, you can disable specific icons by setting their value to "false", ie: [params.sharingicons] facebook = false Any icons not named will be shown. Currently there a four icons configureg: facebook, googleplus, linkedin, and twitter.
This commit is contained in:
parent
0b2d424c62
commit
72d5c94cc5
@ -6,5 +6,9 @@
|
||||
<p class="blog-post-meta"><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format .Site.Params.date_format }}</time> by <a href="#">{{ .Params.author | default .Site.Params.author }}</a></p>
|
||||
</header>
|
||||
{{ .Content }}
|
||||
|
||||
{{ if not .Site.Params.sharingicons.hide }}
|
||||
{{ partial "sharing-icons.html" . }}
|
||||
{{ end }}
|
||||
</article> <!-- /.blog-post -->
|
||||
{{ end }}
|
||||
|
13
layouts/partials/sharing-icons.html
Normal file
13
layouts/partials/sharing-icons.html
Normal file
@ -0,0 +1,13 @@
|
||||
<hr>
|
||||
<footer>
|
||||
<header>
|
||||
<h4>Share</h4>
|
||||
</header>
|
||||
<nav class="nav nav-inline">
|
||||
{{ if not (eq .Site.Params.sharingicons.facebook false) }}<a class="nav-item" href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}" title="Share on Facebook"><span class="fa fa-facebook fa-2x" aria-hidden="true"></span></a>{{ end }}
|
||||
{{ if not (eq .Site.Params.sharingicons.googleplus false) }}<a class="nav-item" href="https://plus.google.com/share?url={{ .Permalink }}" title="Share on Google+"><span class="fa fa-google-plus fa-2x" aria-hidden="true"></span></a>{{ end }}
|
||||
{{ if not (eq .Site.Params.sharingicons.linkedin false) }}<a class="nav-item" href="https://www.linkedin.com/shareArticle?mini=true&url={{ .Permalink }}" title="Share on LinkedIn"><span class="fa fa-linkedin fa-2x" aria-hidden="true"></span></a>{{ end }}
|
||||
{{ if not (eq .Site.Params.sharingicons.twitter false) }}<a class="nav-item" href="https://twitter.com/home?status={{ .Permalink }}" title="Tweet this"><span class="fa fa-twitter fa-2x"></span></a>{{ end }}
|
||||
</nav>
|
||||
</footer>
|
||||
|
Loading…
Reference in New Issue
Block a user