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:
authorLuís Cobucci <lcobucci@gmail.com>2020-06-11 00:04:25 +0300
committerGitHub <noreply@github.com>2020-06-11 00:04:25 +0300
commit08b525958e5a4a884c781297d4ac6b47d354b2dc (patch)
tree98c499ef3735e3b56af575df2ea46669bc15e0e1
parent1d6e73db13f7e73082b9c22f798b829833478fa3 (diff)
Fix incorrect date format
This makes the partial to in fact use the day of the month instead of the numeric representation of the month.
-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>