From 557d2f790c6a0f6ef2b842c67290f21a79fff8c00246b44ef33c527aab160d1b Mon Sep 17 00:00:00 2001
From: Nicholas Johnson <nick@nicholasjohnson.ch>
Date: Sun, 15 Oct 2023 00:00:00 +0000
Subject: Convert archetype dates to UTC

For privacy reasons, user time zones are not recorded at the moment they
are created by an archetype. Without knowing the time zone offset, the
true date is ambiguous. To correct this, all dates are converted to UTC.
---
 archetypes/entry.md                       | 2 +-
 layouts/index.atom.xml                    | 2 +-
 layouts/index.gemini_atom.xml             | 2 +-
 layouts/partials/footer.gmi               | 2 +-
 layouts/partials/footer.html              | 2 +-
 layouts/taxonomy/taxonomy.atom.xml        | 2 +-
 layouts/taxonomy/taxonomy.gemini_atom.xml | 2 +-
 layouts/term/term.atom.xml                | 2 +-
 layouts/term/term.gemini_atom.xml         | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/archetypes/entry.md b/archetypes/entry.md
index 46d491a..32d6347 100644
--- a/archetypes/entry.md
+++ b/archetypes/entry.md
@@ -1,6 +1,6 @@
 ---
 title: "{{ replace .Name "-" " " | title }}"
-date: {{ dateFormat "2006-01-02T00:00:00" .Date }}
+date: {{ now.UTC.Format "2006-01-02T00:00:00Z" }}
 draft: true
 ---
 
diff --git a/layouts/index.atom.xml b/layouts/index.atom.xml
index f7abe7e..ac3b1e5 100644
--- a/layouts/index.atom.xml
+++ b/layouts/index.atom.xml
@@ -10,7 +10,7 @@
         <email>{{ .Site.Author.email }}</email>
     </author>
     <generator>Hugo -- gohugo.io</generator>
-    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights>
     <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Site.RegularPages }}
     <entry>
         <id>{{ .Permalink }}</id>
diff --git a/layouts/index.gemini_atom.xml b/layouts/index.gemini_atom.xml
index dc1b563..ca6001e 100644
--- a/layouts/index.gemini_atom.xml
+++ b/layouts/index.gemini_atom.xml
@@ -10,7 +10,7 @@
         <email>{{ .Site.Author.email }}</email>
     </author>
     <generator>Hugo -- gohugo.io</generator>
-    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights>
     <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Site.RegularPages }}
     <entry>
         <id>{{ replace .Permalink "https://" "gemini://" | safeURL }}</id>
diff --git a/layouts/partials/footer.gmi b/layouts/partials/footer.gmi
index 338e88e..957c9d0 100644
--- a/layouts/partials/footer.gmi
+++ b/layouts/partials/footer.gmi
@@ -1 +1 @@
-{{ replace $.Site.Copyright "{currentYear}" (now.Format "2006") | safeHTML }}
\ No newline at end of file
+{{ replace $.Site.Copyright "{currentYear}" (now.UTC.Format "2006") | safeHTML }}
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 5f8ffc6..00194b2 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,3 +1,3 @@
 <footer class="footer">
-  <p class="footer__text">{{ replace $.Site.Copyright "{currentYear}" (now.Format "2006") }}</p>
+  <p class="footer__text">{{ replace $.Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</p>
 </footer>
\ No newline at end of file
diff --git a/layouts/taxonomy/taxonomy.atom.xml b/layouts/taxonomy/taxonomy.atom.xml
index c0c9f6e..4d8b8e4 100644
--- a/layouts/taxonomy/taxonomy.atom.xml
+++ b/layouts/taxonomy/taxonomy.atom.xml
@@ -10,7 +10,7 @@
         <email>{{ .Site.Author.email }}</email>
     </author>
     <generator>Hugo -- gohugo.io</generator>
-    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights>
     <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }}
     <entry>
         <id>{{ .Permalink }}</id>
diff --git a/layouts/taxonomy/taxonomy.gemini_atom.xml b/layouts/taxonomy/taxonomy.gemini_atom.xml
index 85ff034..97542a4 100644
--- a/layouts/taxonomy/taxonomy.gemini_atom.xml
+++ b/layouts/taxonomy/taxonomy.gemini_atom.xml
@@ -10,7 +10,7 @@
         <email>{{ .Site.Author.email }}</email>
     </author>
     <generator>Hugo -- gohugo.io</generator>
-    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights>
     <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }}
     <entry>
         <id>{{ replace .Permalink "https://" "gemini://" | safeURL }}</id>
diff --git a/layouts/term/term.atom.xml b/layouts/term/term.atom.xml
index c0c9f6e..4d8b8e4 100644
--- a/layouts/term/term.atom.xml
+++ b/layouts/term/term.atom.xml
@@ -10,7 +10,7 @@
         <email>{{ .Site.Author.email }}</email>
     </author>
     <generator>Hugo -- gohugo.io</generator>
-    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights>
     <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }}
     <entry>
         <id>{{ .Permalink }}</id>
diff --git a/layouts/term/term.gemini_atom.xml b/layouts/term/term.gemini_atom.xml
index 85ff034..97542a4 100644
--- a/layouts/term/term.gemini_atom.xml
+++ b/layouts/term/term.gemini_atom.xml
@@ -10,7 +10,7 @@
         <email>{{ .Site.Author.email }}</email>
     </author>
     <generator>Hugo -- gohugo.io</generator>
-    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+    <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights>
     <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }}
     <entry>
         <id>{{ replace .Permalink "https://" "gemini://" | safeURL }}</id>
-- 
cgit v1.2.3