Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jbub/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain <romainx@users.noreply.github.com>2020-10-22 11:47:59 +0300
committerGitHub <noreply@github.com>2020-10-22 11:47:59 +0300
commit2ba087eb5f18adedd7d9a034c28208724264c862 (patch)
tree323b6c722fed68240393f81480322a57953c01e5
parent19b398eb2448e9b81a3081cce522a1ef27c0730a (diff)
Remove leading & trailing whitespaces, rework comma insertion between tags (#97)
-rw-r--r--layouts/partials/post-footer.html26
1 files changed, 12 insertions, 14 deletions
diff --git a/layouts/partials/post-footer.html b/layouts/partials/post-footer.html
index 21b2220..ec6a477 100644
--- a/layouts/partials/post-footer.html
+++ b/layouts/partials/post-footer.html
@@ -1,36 +1,34 @@
<footer class="post-footer clearfix">
- {{ if .Params.tags }}
+ {{- with .Params.tags }}
<p class="post-tags">
<span>Tagged:</span>
- {{ $len := len .Params.tags }}
- {{ range $index, $tag := .Params.tags }}
+ {{- range $index, $tag := . -}}
+ {{- if $index -}}, {{ end }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
- {{- if lt $index (sub $len 1) -}}, {{ end }}
- {{ end }}
+ {{- end }}
</p>
- {{ end}}
+ {{ end -}}
<div class="share">
- {{ if .Site.Params.shareTwitter }}
+ {{- if .Site.Params.shareTwitter }}
<a class="icon-twitter" href="https://twitter.com/share?text={{ .Title }}&url={{ .Permalink }}"
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;" aria-label="Share on Twitter">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
- {{ end }}
+ {{- end }}
- {{ if .Site.Params.sharefacebook }}
+ {{- 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;" aria-label="Share on Facebook">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
- {{ end }}
+ {{- end }}
-
- {{ if .Site.Params.shareLinkedIn }}
+ {{- if .Site.Params.shareLinkedIn }}
<a class="icon-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&title={{ .Title }}&url={{ .Permalink }}&summary={{ .Description }}"
onclick="window.open(this.href, 'linkedin-share', 'width=554,height=481');return false;" aria-label="Share on LinkedIn">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
- {{ end }}
+ {{- end }}
</div>
-</footer>
+</footer> \ No newline at end of file