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:
authorHanzei <hanzei@mailbox.org>2018-07-20 15:45:36 +0300
committerHanzei <hanzei@mailbox.org>2018-07-20 15:45:36 +0300
commitef5feab3ef4a66a03ccc89416303cfb6d5293a3a (patch)
tree3eb7013694433b62821a02149a728b2bcc6a6b3a /assets
parent64b7e1b01043807bf328363024bdb0ba1bdff8cc (diff)
Refactor config.toml
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 0e8c95d..20a0a4b 100644
--- a/assets/js/initMoment.js
+++ b/assets/js/initMoment.js
@@ -1,4 +1,4 @@
$(document).ready(function() {
- var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
+ var time = moment().tz("{{ .Site.Params.home.timeZone }}").format("h:mm A");
$('#time').html(time);
})