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

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
Diffstat (limited to 'assets')
-rw-r--r--assets/js/initMoment.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/js/initMoment.js b/assets/js/initMoment.js
index 609f671..e638cf1 100644
--- a/assets/js/initMoment.js
+++ b/assets/js/initMoment.js
@@ -1,4 +1,4 @@
$(document).ready(function() {
- var time = moment().tz("{{ .Site.Params.home.timeZone }}").format("h:mm A");
+ var time = moment().tz("{{ .Site.Params.home.timeZone }}").format("{{ .Site.Params.home.timeFormat }}");
$("#time").html(time);
})