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