From 6e6412e4a693ddc2da5e4611363fb882ad6497be Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Thu, 12 Oct 2023 08:08:37 -0400 Subject: Switch to light theme. remove articles. --- layouts/partials/updated_posts.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 layouts/partials/updated_posts.html (limited to 'layouts/partials/updated_posts.html') diff --git a/layouts/partials/updated_posts.html b/layouts/partials/updated_posts.html new file mode 100644 index 0000000..7010a5b --- /dev/null +++ b/layouts/partials/updated_posts.html @@ -0,0 +1,17 @@ +{{ $lastBuildTime := time "2021-09-08T12:51:38-0400" }} +{{ $updatedPosts := slice }} + +{{ range .Site.Pages }} + {{ if .Lastmod.After $lastBuildTime }} +
  • {{ .Title }} - {{ .Lastmod }}
  • + {{ end }} +{{ end }} + +

    Updated Posts:

    + + +{{ $currentTime := now.UTC }} -- cgit v1.1