From bc9e64a009cc678e182df4280bb730f24c79ebd9 Mon Sep 17 00:00:00 2001 From: trwnh Date: Tue, 25 Oct 2022 18:12:18 -0500 Subject: [PATCH] fix nil date, replace with lastmod --- layouts/_default/list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 1bd1ef3..8624db5 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -17,10 +17,10 @@

{{ .Title }}

{{.Summary}}

- {{ .Date.Format "January 2, 2006" }} + {{ .Lastmod.Format "January 2, 2006" }} {{ end }} -{{ end }} \ No newline at end of file +{{ end }}