summaryrefslogtreecommitdiffstats
path: root/_build/themes/ninenines/layouts/articles/list.html
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-08-01 11:51:09 +0200
committerLoïc Hoguin <[email protected]>2018-08-01 11:51:09 +0200
commit34bea68bc8c23429ab788387b4db110135789adf (patch)
tree980155128e22c97fb191a6f6b76f693ff1373436 /_build/themes/ninenines/layouts/articles/list.html
parentcdd9c66b172c34e8417a868979646c82fb335ea2 (diff)
downloadninenines.eu-34bea68bc8c23429ab788387b4db110135789adf.tar.gz
ninenines.eu-34bea68bc8c23429ab788387b4db110135789adf.tar.bz2
ninenines.eu-34bea68bc8c23429ab788387b4db110135789adf.zip
Add the year in the articles date circle
This will prevent confusion around very old articles.
Diffstat (limited to '_build/themes/ninenines/layouts/articles/list.html')
-rw-r--r--_build/themes/ninenines/layouts/articles/list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_build/themes/ninenines/layouts/articles/list.html b/_build/themes/ninenines/layouts/articles/list.html
index ce8f9b4c..094598f1 100644
--- a/_build/themes/ninenines/layouts/articles/list.html
+++ b/_build/themes/ninenines/layouts/articles/list.html
@@ -13,8 +13,8 @@
<header>
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<p class="date">
- <span class="day">{{ .Date.Format "02" }}</span>
- <span class="month">{{ .Date.Format "Jan" }}</span>
+ <span class="year">{{ .Date.Format "2006" }}</span>
+ <span class="day-month">{{ .Date.Format "02 Jan" }}</span>
</p>
</header>