From 4108d0f01aa0e48fc208b68881d0e7652f2fa11f Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 9 Apr 2023 21:16:33 +0100 Subject: Fix comma in list separation --- themes/ymherklotz/layouts/partials/service-single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/ymherklotz/layouts/partials/service-single.html b/themes/ymherklotz/layouts/partials/service-single.html index 1cb38f6..afd29f2 100644 --- a/themes/ymherklotz/layouts/partials/service-single.html +++ b/themes/ymherklotz/layouts/partials/service-single.html @@ -1,9 +1,9 @@ {{ .name }} - {{ range $i, $t := .conf }} + {{- range $i, $t := .conf -}} {{ if $i }}, {{ end }} {{ $t.name }} - {{ end }} + {{- end -}} -- cgit