mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 23:09:47 +00:00
5 lines
137 B
JavaScript
5 lines
137 B
JavaScript
|
$(document).ready(function() {
|
||
|
var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
|
||
|
$('#time').html(time);
|
||
|
})
|