hugo-theme-introduction/assets/js/initMoment.js
2018-07-18 17:41:04 +02:00

4 lines
137 B
JavaScript

$(document).ready(function() {
var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
$('#time').html(time);
})