diff --git a/themes/gochowdown/layouts/partials/taxonomy/tags.html b/themes/gochowdown/layouts/partials/taxonomy/tags.html index e6b7b40..2d6d14d 100644 --- a/themes/gochowdown/layouts/partials/taxonomy/tags.html +++ b/themes/gochowdown/layouts/partials/taxonomy/tags.html @@ -1,16 +1,14 @@

Tags: {{ if (isset . 0) }} {{/* Hack to check if this is an array https://discourse.gohugo.io/t/how-to-check-if-a-variable-is-string-or-array/7460/7 */}} - {{ $humanized := apply . "humanize" "." }} - {{ $sorted := sort $humanized }} - {{ range first 1 $sorted }} + {{ range first 1 . }} {{ . }} {{ end }} - {{ range after 1 $sorted }} + {{ range after 1 . }} • {{ . }} {{ end }} {{ else }} - {{ . | humanize }} + {{ . }} {{ end }}

-
\ No newline at end of file +