From 34bea68bc8c23429ab788387b4db110135789adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 1 Aug 2018 11:51:09 +0200 Subject: Add the year in the articles date circle This will prevent confusion around very old articles. --- _build/themes/ninenines/layouts/articles/list.html | 4 ++-- _build/themes/ninenines/layouts/articles/single.html | 4 ++-- _build/themes/ninenines/layouts/partials/head.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to '_build/themes/ninenines/layouts') 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 @@

{{ .Title }}

- {{ .Date.Format "02" }} - {{ .Date.Format "Jan" }} + {{ .Date.Format "2006" }} + {{ .Date.Format "02 Jan" }}

diff --git a/_build/themes/ninenines/layouts/articles/single.html b/_build/themes/ninenines/layouts/articles/single.html index 1eeda1e5..c9589e10 100644 --- a/_build/themes/ninenines/layouts/articles/single.html +++ b/_build/themes/ninenines/layouts/articles/single.html @@ -10,8 +10,8 @@

{{ .Title }}

- {{ .Date.Format "02" }} - {{ .Date.Format "Jan" }} + {{ .Date.Format "2006" }} + {{ .Date.Format "02 Jan" }}

diff --git a/_build/themes/ninenines/layouts/partials/head.html b/_build/themes/ninenines/layouts/partials/head.html index 2aa9cdc5..55cd6a46 100644 --- a/_build/themes/ninenines/layouts/partials/head.html +++ b/_build/themes/ninenines/layouts/partials/head.html @@ -7,7 +7,7 @@ {{ if .IsHome }}{{ .Title }}{{ else }}{{ .Site.Title }}: {{ .Title }}{{ end }} - + -- cgit v1.2.3