From ca78e3e5c55d05bad6376a8851e81bfd4725f3ad 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 6c5aa155e91dea8529b652d78a52df70d2b09f36 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 }}
Posted: | {{ . }} |
{{- if ne $postDate $updateDate }}Updated: | {{ $updateDate }} |
{{ end }}
{{ end }}
+ {{ with $postDate }}posted: | {{ . }} |
{{- if ne $postDate $updateDate }}updated: | {{ $updateDate }} |
{{ end }}
{{ end }}
{{- with .Params.tags -}}