From 3e84ff0435684f578969929385a727712630a89a Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Sun, 25 Oct 2020 11:17:54 +0530 Subject: [PATCH] =?UTF-8?q?post-meta:=20fix=20redundant=20'=C2=B7'(separat?= =?UTF-8?q?or)=20in=20end=20when=20author=20is=20not=20present?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layouts/partials/post_meta.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/layouts/partials/post_meta.html b/layouts/partials/post_meta.html index 479ab897..1b329470 100644 --- a/layouts/partials/post_meta.html +++ b/layouts/partials/post_meta.html @@ -1,11 +1,17 @@ +{{- $scratch := newScratch}} + {{- if not .Date.IsZero -}} - ·  +{{- $scratch.Add "meta" (slice (.Date.Format (default "January 2, 2006" .Site.Params.DateFormat))) }} {{- end -}} {{- if $.Site.Params.ShowReadingTime -}} -{{- i18n "read_time" .ReadingTime | default (printf "%s min" .ReadingTime) }} ·  +{{- $scratch.Add "meta" (slice (i18n "read_time" .ReadingTime | default (printf "%s min" .ReadingTime))) }} {{- end -}} {{- if or .Params.author .Site.Params.author }} -{{- printf "%s" (.Params.author | default .Site.Params.author) }} +{{- $scratch.Add "meta" (slice (.Params.author | default .Site.Params.author)) }} {{- end -}} + +{{- with ($scratch.Get "meta")}} +{{- delimit . " · "}} +{{- end }}