commit 687215a3fb385883df4ea4ef74def709219709e1
parent a28da6f9c67f03bde36d0336d98ade5df4f8c56e
Author: breadcat <peter@minskio.co.uk>
Date: Fri, 26 Feb 2021 00:14:31 +0000
Comma separate those tags
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/themes/Brine/layouts/_default/single.html b/themes/Brine/layouts/_default/single.html
@@ -1,5 +1,5 @@
{{ define "main" }} <h1>{{ .Title }}</h1>{{ if .PublishDate }}
<div>Published: {{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }}, last updated: {{ .Lastmod.Format "Jan 2, 2006" }}{{ end }}</div>{{ end }}
- <div>Reading time: {{ .ReadingTime }} min</div>{{- with .Params.tags -}}
- <div>Tags: {{ range . -}}{{- with $.Site.GetPage (printf "/%s/%s" "tags" . ) -}}<a href="{{ .Permalink }}">{{ .Title }}</a> {{- end -}}{{- end -}}</div>{{- end -}}
+ <div>Reading time: {{ .ReadingTime }} min</div>
+ <div>Tags: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}<a href='{{ "/tags/" | relLangURL }}{{ . | urlize }}'>{{ $e | humanize }}</a>{{- end -}}</div>
{{ .Content }}{{ end }}