hugo-theme-introduction/assets/js/initMoment.js

5 lines
137 B
JavaScript
Raw Normal View History

2018-07-18 15:40:58 +00:00
$(document).ready(function() {
var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
$('#time').html(time);
})