diff options
author | Sanjay T. Sharma <sanjay.t.sharma@gmail.com> | 2017-09-24 17:56:55 +0100 |
---|---|---|
committer | olOwOlo <26087907+olOwOlo@users.noreply.github.com> | 2017-09-25 00:56:55 +0800 |
commit | ab7cdc5d3c20f03b1e22f4c201ba29af06d139cb (patch) | |
tree | 72c5097b037064188bfe5deed66bf58c490efa75 /layouts/post | |
parent | 271f73a87fe152978daea55e6cfe2a3b6f3530fb (diff) |
feat: provide the facility to customize date format (#10)
Diffstat (limited to 'layouts/post')
-rw-r--r-- | layouts/post/single.html | 2 | ||||
-rw-r--r-- | layouts/post/summary.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/post/single.html b/layouts/post/single.html index da83b70..7960c64 100644 --- a/layouts/post/single.html +++ b/layouts/post/single.html @@ -6,7 +6,7 @@ <h1 class="post-title">{{ .Title }}</h1> <div class="post-meta"> - <span class="post-time"> {{ .Date.Format "2006-01-02" }} </span> + <span class="post-time"> {{ .Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }} </span> {{ with .Params.categories -}} <div class="post-category"> {{ range . -}} diff --git a/layouts/post/summary.html b/layouts/post/summary.html index 2cdb7b3..be4366b 100644 --- a/layouts/post/summary.html +++ b/layouts/post/summary.html @@ -3,7 +3,7 @@ <header class="post-header"> <h1 class="post-title"><a class="post-link" href="{{ .URL }}">{{ .Title }}</a></h1> <div class="post-meta"> - <span class="post-time"> {{ .Date.Format "2006-01-02" }} </span> + <span class="post-time"> {{ .Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }} </span> {{ with .Params.categories -}} <div class="post-category"> {{ range . -}} |