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

github.com/gyorb/hugo-dusk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGyorgy Orban <o.gyorgy@gmail.com>2020-01-19 22:58:31 +0300
committerGyorgy Orban <o.gyorgy@gmail.com>2020-01-19 23:05:43 +0300
commit0e157150a086f4f384b8ee2fce3ee907955f1023 (patch)
treea00dc9064cbd013b1a872966aebdcc6a3cb55543
parenta68365af929d0ae1e0bf7a9932046b8396fd4d53 (diff)
fix date format for the post footerHEADmaster
the month was printed out twice instead of the day
-rw-r--r--layouts/partials/postfooter.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/postfooter.html b/layouts/partials/postfooter.html
index 479c411..ce17477 100644
--- a/layouts/partials/postfooter.html
+++ b/layouts/partials/postfooter.html
@@ -2,7 +2,7 @@
<div class="post-footer-data">
{{ partial "tags.html" . }}
- <div class="date"> {{ .Date.Format "2006-01-01" }} </div>
+ <div class="date"> {{ .Date.Format "2006-01-02" }} </div>
{{if or .Params.categories .Params.series}}
<hr>
{{ partial "categories.html" . }}