mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2025-03-14 03:29:21 +00:00
4 lines
137 B
JavaScript
4 lines
137 B
JavaScript
$(document).ready(function() {
|
|
var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
|
|
$('#time').html(time);
|
|
})
|