From 76661f79589bb12ee23fef560de982424b4bb2d6 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Tue, 29 Aug 2023 16:24:41 -0500 Subject: [PATCH 1/2] add tags label --- layouts/partials/aside.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/partials/aside.html b/layouts/partials/aside.html index 7927311..54bc3d2 100644 --- a/layouts/partials/aside.html +++ b/layouts/partials/aside.html @@ -7,6 +7,7 @@

{{- with .Params.tags -}} + tags:
{{- range . }} {{- $tag := urlize . -}} [{{ . }}] From 08fe2bef6903aaad0913398d20d95ed799d28cd1 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Tue, 29 Aug 2023 16:25:35 -0500 Subject: [PATCH 2/2] convert date labels to lowercase --- layouts/partials/aside.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/aside.html b/layouts/partials/aside.html index 54bc3d2..085c8c1 100644 --- a/layouts/partials/aside.html +++ b/layouts/partials/aside.html @@ -3,7 +3,7 @@ {{ if or (.Params.description) (.Params.date) }} {{ if .Params.description }}

{{ .Params.description }}

{{ end }}

- {{ with $postDate }}{{- if ne $postDate $updateDate }}{{ end }}
Posted:{{ . }}
Updated:{{ $updateDate }}
{{ end }} + {{ with $postDate }}{{- if ne $postDate $updateDate }}{{ end }}
posted:{{ . }}
updated:{{ $updateDate }}
{{ end }}

{{- with .Params.tags -}}