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: 609f6710ed3690282141f21a6ceb141e429c54f3 (plain)
1
2
3
4
$(document).ready(function() {
    var time = moment().tz("{{ .Site.Params.home.timeZone }}").format("h:mm A");
    $("#time").html(time);
})