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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/single/footer.html')
-rw-r--r--layouts/partials/single/footer.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/layouts/partials/single/footer.html b/layouts/partials/single/footer.html
index 18d7d7f..1d62c15 100644
--- a/layouts/partials/single/footer.html
+++ b/layouts/partials/single/footer.html
@@ -44,12 +44,10 @@
<div class="post-info-more">
<section>
{{- with .Params.tags -}}
- {{- range . -}}
- <span>
- <a href="{{ `/tags/` | relLangURL }}{{ urlize .}}">
- <i class="fas fa-tag fa-fw"></i>{{ . }}
- </a>
- </span>&nbsp;
+ <i class="fas fa-tags fa-fw"></i>&nbsp;
+ {{- range $index, $value := . -}}
+ {{- if gt $index 0 }},&nbsp;{{ end -}}
+ <a href="{{ `/tags/` | relLangURL }}{{ urlize $value }}">{{ $value }}</a>
{{- end -}}
{{- end -}}
</section>