summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorHunter Kvalevog <hunter@kvog.sh>2026-04-23 00:16:34 -0500
committerHunter Kvalevog <hunter@kvog.sh>2026-04-23 00:16:34 -0500
commit84347302ea85b96fb5139a8a0cd5888cf34efda5 (patch)
tree1d68780d01fe0bd1cf9ba4d8be160aac5e1b57e6 /themes
parentb5a5dbbf3e0b107ae0cec5e1af04dde4c5a896e9 (diff)
Diffstat (limited to 'themes')
-rw-r--r--themes/hugo-xmin/layouts/_default/list.html2
-rw-r--r--themes/hugo-xmin/layouts/_default/single.html2
-rw-r--r--themes/hugo-xmin/layouts/index.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/themes/hugo-xmin/layouts/_default/list.html b/themes/hugo-xmin/layouts/_default/list.html
index 351a976..6940251 100644
--- a/themes/hugo-xmin/layouts/_default/list.html
+++ b/themes/hugo-xmin/layouts/_default/list.html
@@ -7,7 +7,7 @@
{{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
{{ range (where $pages "Section" "!=" "") }}
<li>
- <span class="date">{{ .Date.Format "2006/01/02" }}</span>
+ <span class="date">{{ .Date.Format "01/02/2006" }}</span>
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
</li>
{{ end }}
diff --git a/themes/hugo-xmin/layouts/_default/single.html b/themes/hugo-xmin/layouts/_default/single.html
index 9529765..a9a9f86 100644
--- a/themes/hugo-xmin/layouts/_default/single.html
+++ b/themes/hugo-xmin/layouts/_default/single.html
@@ -2,7 +2,7 @@
<div class="article-meta">
<h1>{{ .Title | markdownify }}</h1>
{{ with .Params.author }}<p class="author">{{ . }}</p>{{ end }}
-{{ if (gt .Params.date 0) }}<p class="date">{{ .Date.Format "2006/01/02" }}</p>{{ end }}
+{{ if (gt .Params.date 0) }}<p class="date">{{ .Date.Format "01/02/2006" }}</p>{{ end }}
</div>
<main class="main">
diff --git a/themes/hugo-xmin/layouts/index.html b/themes/hugo-xmin/layouts/index.html
index a3daf68..e3b9abe 100644
--- a/themes/hugo-xmin/layouts/index.html
+++ b/themes/hugo-xmin/layouts/index.html
@@ -17,7 +17,7 @@
{{ $pages := .Site.RegularPages }}
{{ range (where $pages "Section" "posts") }}
<li>
- <span class="date">{{ .Date.Format "2006/01/02" }}</span>
+ <span class="date">{{ .Date.Format "01/02/2006" }}</span>
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
</li>
{{ end }}