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

initMoment.js « js « assets - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20a0a4bab8a593f2d44a4a9edac8d95618cfe464 (plain)
1
2
3
4
$(document).ready(function() {
    var time = moment().tz("{{ .Site.Params.home.timeZone }}").format("h:mm A");
    $('#time').html(time);
})