mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 14:59:45 +00:00
Fix fa icons
This commit is contained in:
parent
618fe065fe
commit
b78d41141c
1 changed files with 4 additions and 4 deletions
|
@ -16,25 +16,25 @@
|
|||
{{ i18n "blog_shareThis" . }}:
|
||||
{{ if .Site.Params.shareTwitter }}
|
||||
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Read%20{{ .Title }}%20{{ .Permalink }}" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
|
||||
<i class="fa fa-twitter"></i>
|
||||
<i class="fab fa-twitter"></i>
|
||||
<span class="hidden">Twitter</span>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Site.Params.shareFacebook }}
|
||||
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
|
||||
<i class="fa fa-facebook"></i>
|
||||
<i class="fab fa-facebook-f"></i>
|
||||
<span class="hidden">Facebook</span>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Site.Params.sharePinterest }}
|
||||
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url={{ .Permalink }}{{ if .Params.pinterestMedia }}&media={{ .Site.BaseURL }}{{ .Params.pinterestMedia }}{{ end }}&description={{ .Title | safeHTML}}" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
|
||||
<i class="fa fa-pinterest"></i>
|
||||
<i class="fab fa-pinterest-p"></i>
|
||||
<span class="hidden">Pinterest</span>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Site.Params.shareGooglePlus }}
|
||||
<a class="icon-google-plus" href="https://plus.google.com/share?url={{ .Permalink }}" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
|
||||
<i class="fa fa-google-plus"></i>
|
||||
<i class="fab fa-google-plus-g"></i>
|
||||
<span class="hidden">Google+</span>
|
||||
</a>
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in a new issue