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

github.com/Vimux/Binario.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/entry/meta/tags.html')
-rw-r--r--layouts/partials/entry/meta/tags.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/layouts/partials/entry/meta/tags.html b/layouts/partials/entry/meta/tags.html
new file mode 100644
index 0000000..4841655
--- /dev/null
+++ b/layouts/partials/entry/meta/tags.html
@@ -0,0 +1,11 @@
+{{- if .Params.tags }}
+<div class="entry__meta-tags meta-tags">
+ <span class="meta-tags__list">{{ T "meta_tags" }}:
+ {{- range $index, $category := .Params.tags }}{{ if gt $index 0 }}, {{ end }}
+ <a class="meta-tags__link" href="{{ " tags/" | relLangURL }}{{ . | urlize | lower }}/" rel="tag">
+ {{- . -}}
+ </a>
+ {{- end }}
+ </span>
+</div>
+{{- end }} \ No newline at end of file