summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-12-02 20:38:55 -0800
committerPinapelz <yukais@pinapelz.com>2025-12-02 20:38:55 -0800
commit98ddc6edd51bc961ef8dbeb9852fdbb3978f23ce (patch)
tree06fc2f63ef2e0a5913e5a3ccacac2bc2b0d312b3
parent20d22355022cff53b096af7719ced5d74632019a (diff)
fix: micro posts imprecise dt-published values
-rw-r--r--indieweb-micro/themes/MinIndie/layouts/_default/list.html2
-rw-r--r--indieweb-micro/themes/MinIndie/layouts/_default/single.html2
-rw-r--r--indieweb-micro/themes/MinIndie/layouts/_default/taxonomy.html2
-rw-r--r--indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html2
-rw-r--r--indieweb-micro/themes/MinIndie/layouts/notes/notes.html2
-rw-r--r--indieweb-micro/themes/MinIndie/layouts/notes/single.html2
-rw-r--r--micro.pinapelz.moe/categories/default/index.html4
-rw-r--r--micro.pinapelz.moe/categories/life/index.html2
-rw-r--r--micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html2
-rw-r--r--micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html2
-rw-r--r--micro.pinapelz.moe/posts/2025-12-02-power-bank-recall/index.html2
-rw-r--r--micro.pinapelz.moe/posts/index.html6
-rw-r--r--micro.pinapelz.moe/tags/arcade/index.html2
-rw-r--r--micro.pinapelz.moe/tags/default/index.html4
14 files changed, 18 insertions, 18 deletions
diff --git a/indieweb-micro/themes/MinIndie/layouts/_default/list.html b/indieweb-micro/themes/MinIndie/layouts/_default/list.html
index f3639a1..7f8130e 100644
--- a/indieweb-micro/themes/MinIndie/layouts/_default/list.html
+++ b/indieweb-micro/themes/MinIndie/layouts/_default/list.html
@@ -37,7 +37,7 @@
{{ partial "bio-hcard.html" . }}
</div>
<div class="post-title">
- <time class="date dt-published" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "02" }}</time>:
+ <time class="date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">{{ .Date.Format "02" }}</time>:
{{ if eq $pageKind "term" }}[{{ .Type }}] {{ end }}
<a href="{{ .Permalink }}" class="u-url p-name title">
{{.Title }}
diff --git a/indieweb-micro/themes/MinIndie/layouts/_default/single.html b/indieweb-micro/themes/MinIndie/layouts/_default/single.html
index 2e45cf7..2ab1f0a 100644
--- a/indieweb-micro/themes/MinIndie/layouts/_default/single.html
+++ b/indieweb-micro/themes/MinIndie/layouts/_default/single.html
@@ -8,7 +8,7 @@
{{ if .Date }}
<div><b>
- <time class="dt-published" datetime="{{ .Date.Format "2006-01-02" }}">
+ <time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">
{{ .Date.Format (default "2006-01-02 15:04:05" .Site.Params.dateFmt) }}
</time>
- <a href="{{ .Permalink }}" class="u-url u-uid" >Permalink</a>
diff --git a/indieweb-micro/themes/MinIndie/layouts/_default/taxonomy.html b/indieweb-micro/themes/MinIndie/layouts/_default/taxonomy.html
index 3e10031..e51e530 100644
--- a/indieweb-micro/themes/MinIndie/layouts/_default/taxonomy.html
+++ b/indieweb-micro/themes/MinIndie/layouts/_default/taxonomy.html
@@ -32,7 +32,7 @@
<ul>
{{ end }}
<li>
- <time class="date dt-published" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>
+ <time class="date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">{{ .Date.Format "2006-01-02" }}</time>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ $currentType = .Type }}
diff --git a/indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html b/indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html
index 8ee4bf1..3e50b62 100644
--- a/indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html
+++ b/indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html
@@ -9,7 +9,7 @@
</a>
</h1>
<div><b>
- <time class="dt-published" datetime="{{ .Date.Format "2006-01-02" }}">
+ <time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">
{{ .Date.Format (default "2006-01-02 15:04:05" .Site.Params.dateFmt) }}
</time>
- <a href="{{ .Permalink }}" class="u-url u-uid" >Permalink</a>
diff --git a/indieweb-micro/themes/MinIndie/layouts/notes/notes.html b/indieweb-micro/themes/MinIndie/layouts/notes/notes.html
index e0e0d17..23aa6d9 100644
--- a/indieweb-micro/themes/MinIndie/layouts/notes/notes.html
+++ b/indieweb-micro/themes/MinIndie/layouts/notes/notes.html
@@ -24,7 +24,7 @@
{{ .Content }}
</p>
- <time class="date dt-published" datetime="{{ .Date.Format "2006-01-02 15:04" }}">
+ <time class="date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">
<a href="{{ .RelPermalink }}">{{ .Date.Format "2006-01-02 15:04" }}</a>
</time>
diff --git a/indieweb-micro/themes/MinIndie/layouts/notes/single.html b/indieweb-micro/themes/MinIndie/layouts/notes/single.html
index 32afcea..7b96f5c 100644
--- a/indieweb-micro/themes/MinIndie/layouts/notes/single.html
+++ b/indieweb-micro/themes/MinIndie/layouts/notes/single.html
@@ -4,7 +4,7 @@
<article class="h-entry">
<div hidden>{{ partial "bio-hcard.html" . }}</div>
<div><b>
- <time class="dt-published" datetime="{{ .Date.Format "2006-01-02" }}">
+ <time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">
{{ .Date.Format (default "2006-01-02 15:04:05" .Site.Params.dateFmt) }}
</time>
- <a href="{{ .Permalink }}" class="u-url u-uid" >Permalink</a>
diff --git a/micro.pinapelz.moe/categories/default/index.html b/micro.pinapelz.moe/categories/default/index.html
index dfe44e1..9547984 100644
--- a/micro.pinapelz.moe/categories/default/index.html
+++ b/micro.pinapelz.moe/categories/default/index.html
@@ -79,14 +79,14 @@
<ul>
<li>
- <time class="date dt-published" datetime="2025-12-02">2025-12-02</time>
+ <time class="date dt-published" datetime="2025-12-02T19:45:01-08:00">2025-12-02</time>
<a href="/posts/2025-12-02-power-bank-recall/">INIU Power Bank Gets Recall</a>
</li>
<li>
- <time class="date dt-published" datetime="2025-12-01">2025-12-01</time>
+ <time class="date dt-published" datetime="2025-12-01T20:11:57-08:00">2025-12-01</time>
<a href="/posts/2025-12-01-hello-world/">Hello World - Why This</a>
</li>
diff --git a/micro.pinapelz.moe/categories/life/index.html b/micro.pinapelz.moe/categories/life/index.html
index 9a6fc64..774fe28 100644
--- a/micro.pinapelz.moe/categories/life/index.html
+++ b/micro.pinapelz.moe/categories/life/index.html
@@ -79,7 +79,7 @@
<ul>
<li>
- <time class="date dt-published" datetime="2025-12-02">2025-12-02</time>
+ <time class="date dt-published" datetime="2025-12-02T00:22:32-08:00">2025-12-02</time>
<a href="/posts/2025-12-02-china-town-fair/">China Town Fair</a>
</li>
diff --git a/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html b/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html
index 0041a87..779d6dd 100644
--- a/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html
+++ b/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html
@@ -85,7 +85,7 @@
<div><b>
- <time class="dt-published" datetime="2025-12-01">
+ <time class="dt-published" datetime="2025-12-01T20:11:57-08:00">
Monday, December 1, 2025
</time>
- <a href="https://micro.pinapelz.moe/posts/2025-12-01-hello-world/" class="u-url u-uid" >Permalink</a>
diff --git a/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html
index 43f3a73..d19c277 100644
--- a/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html
+++ b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html
@@ -85,7 +85,7 @@
<div><b>
- <time class="dt-published" datetime="2025-12-02">
+ <time class="dt-published" datetime="2025-12-02T00:22:32-08:00">
Tuesday, December 2, 2025
</time>
- <a href="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/" class="u-url u-uid" >Permalink</a>
diff --git a/micro.pinapelz.moe/posts/2025-12-02-power-bank-recall/index.html b/micro.pinapelz.moe/posts/2025-12-02-power-bank-recall/index.html
index 546d17a..d2d503f 100644
--- a/micro.pinapelz.moe/posts/2025-12-02-power-bank-recall/index.html
+++ b/micro.pinapelz.moe/posts/2025-12-02-power-bank-recall/index.html
@@ -85,7 +85,7 @@
<div><b>
- <time class="dt-published" datetime="2025-12-02">
+ <time class="dt-published" datetime="2025-12-02T19:45:01-08:00">
Tuesday, December 2, 2025
</time>
- <a href="https://micro.pinapelz.moe/posts/2025-12-02-power-bank-recall/" class="u-url u-uid" >Permalink</a>
diff --git a/micro.pinapelz.moe/posts/index.html b/micro.pinapelz.moe/posts/index.html
index 6069e60..f2f35ff 100644
--- a/micro.pinapelz.moe/posts/index.html
+++ b/micro.pinapelz.moe/posts/index.html
@@ -117,7 +117,7 @@
</div>
<div class="post-title">
- <time class="date dt-published" datetime="2025-12-02">02</time>:
+ <time class="date dt-published" datetime="2025-12-02T19:45:01-08:00">02</time>:
<a href="https://micro.pinapelz.moe/posts/2025-12-02-power-bank-recall/" class="u-url p-name title">
INIU Power Bank Gets Recall
@@ -156,7 +156,7 @@
</div>
<div class="post-title">
- <time class="date dt-published" datetime="2025-12-02">02</time>:
+ <time class="date dt-published" datetime="2025-12-02T00:22:32-08:00">02</time>:
<a href="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/" class="u-url p-name title">
China Town Fair
@@ -195,7 +195,7 @@
</div>
<div class="post-title">
- <time class="date dt-published" datetime="2025-12-01">01</time>:
+ <time class="date dt-published" datetime="2025-12-01T20:11:57-08:00">01</time>:
<a href="https://micro.pinapelz.moe/posts/2025-12-01-hello-world/" class="u-url p-name title">
Hello World - Why This
diff --git a/micro.pinapelz.moe/tags/arcade/index.html b/micro.pinapelz.moe/tags/arcade/index.html
index 3df2874..0f463df 100644
--- a/micro.pinapelz.moe/tags/arcade/index.html
+++ b/micro.pinapelz.moe/tags/arcade/index.html
@@ -79,7 +79,7 @@
<ul>
<li>
- <time class="date dt-published" datetime="2025-12-02">2025-12-02</time>
+ <time class="date dt-published" datetime="2025-12-02T00:22:32-08:00">2025-12-02</time>
<a href="/posts/2025-12-02-china-town-fair/">China Town Fair</a>
</li>
diff --git a/micro.pinapelz.moe/tags/default/index.html b/micro.pinapelz.moe/tags/default/index.html
index 8eaac72..a14e827 100644
--- a/micro.pinapelz.moe/tags/default/index.html
+++ b/micro.pinapelz.moe/tags/default/index.html
@@ -79,14 +79,14 @@
<ul>
<li>
- <time class="date dt-published" datetime="2025-12-02">2025-12-02</time>
+ <time class="date dt-published" datetime="2025-12-02T19:45:01-08:00">2025-12-02</time>
<a href="/posts/2025-12-02-power-bank-recall/">INIU Power Bank Gets Recall</a>
</li>
<li>
- <time class="date dt-published" datetime="2025-12-01">2025-12-01</time>
+ <time class="date dt-published" datetime="2025-12-01T20:11:57-08:00">2025-12-01</time>
<a href="/posts/2025-12-01-hello-world/">Hello World - Why This</a>
</li>
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage