Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/forestryio/hugo-theme-novela.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Taillandier <frank@forestry.io>2020-06-11 01:04:24 +0300
committerGitHub <noreply@github.com>2020-06-11 01:04:24 +0300
commita838504eaad7bcee9ad2de6d99cdfc634a789aa1 (patch)
tree98c499ef3735e3b56af575df2ea46669bc15e0e1
parent1d6e73db13f7e73082b9c22f798b829833478fa3 (diff)
parent08b525958e5a4a884c781297d4ac6b47d354b2dc (diff)
Merge pull request #41 from lcobucci/patch-1
Fix incorrect date format
-rw-r--r--layouts/partials/article/next.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/article/next.html b/layouts/partials/article/next.html
index fafb9ca..c219737 100644
--- a/layouts/partials/article/next.html
+++ b/layouts/partials/article/next.html
@@ -47,7 +47,7 @@ of the whole section and append them to our $next slice. */}}
{{ $article.Params.excerpt }}
</p>
<div class="article-metadata">
- {{ $article.Date | dateFormat "January 1, 2006" }} · {{ $article.ReadingTime }} min read
+ {{ $article.Date | dateFormat "January 2, 2006" }} · {{ $article.ReadingTime }} min read
</div>
</div>
</div>