aboutsummaryrefslogtreecommitdiff
path: root/layouts/posts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/posts')
-rw-r--r--layouts/posts/list.html3
-rw-r--r--layouts/posts/single.html3
2 files changed, 4 insertions, 2 deletions
diff --git a/layouts/posts/list.html b/layouts/posts/list.html
index 9c68a79..18871f2 100644
--- a/layouts/posts/list.html
+++ b/layouts/posts/list.html
@@ -1,4 +1,5 @@
{{ define "main" }}
+ {{- $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat -}}
{{ $paginator := .Paginate (where .Pages "Params.hidden" "ne" true) }}
{{ range sort .Paginator.Pages }}
<article>
@@ -6,7 +7,7 @@
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h2>
<h5>
- <strong>{{ .Date.Format .Site.Params.DateFormat }}</strong>
+ <strong>{{ .Date.Format $dateFormat }}</strong>
</h5>
<p class="markdown">
{{- .Summary -}}
diff --git a/layouts/posts/single.html b/layouts/posts/single.html
index 36585e5..a7f94ed 100644
--- a/layouts/posts/single.html
+++ b/layouts/posts/single.html
@@ -1,8 +1,9 @@
{{ define "main" }}
+{{- $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat -}}
<header>
<h1>{{ .Title }}</h1>
<h5>
- <strong>{{ .Date.Format .Site.Params.DateFormat }}</strong>
+ <strong>{{ .Date.Format $dateFormat }}</strong>
</h5>
</header>
<article class="markdown">