about summary refs log tree commit diff
path: root/users/fcuny/blog/layouts
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-04-06 12:28:53 -0700
committerFranck Cuny <franck@fcuny.net>2021-04-06 12:28:53 -0700
commita5546c7cc2d31f78c7c6fc08fa379b859245210f (patch)
treeebf4d9d009da86ec278fd089649216e1992c3fee /users/fcuny/blog/layouts
parentlayout: clean up empty space (diff)
downloadworld-a5546c7cc2d31f78c7c6fc08fa379b859245210f.tar.gz
layout: fix format for the date
Diffstat (limited to '')
-rw-r--r--users/fcuny/blog/layouts/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/blog/layouts/index.html b/users/fcuny/blog/layouts/index.html
index 5f49f24..450444b 100644
--- a/users/fcuny/blog/layouts/index.html
+++ b/users/fcuny/blog/layouts/index.html
@@ -15,7 +15,7 @@
   {{ $section := "notes" }}
   <ul>
     {{ range (where .Site.RegularPages.ByTitle "Section" $section ) }}
-    <li><a href="{{ .Permalink }}">{{ .Params.title | humanize | title }} ({{ .Date.Format "2021-01" }})</a></li>
+    <li><a href="{{ .Permalink }}">{{ .Params.title | humanize | title }} ({{ .Date.Format "2006-01-02" }})</a></li>
     {{ end }}
   </ul>