mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-14 00:59:43 +00:00
22 lines
791 B
HTML
22 lines
791 B
HTML
|
<!-- jQuery -->
|
||
|
<script type="text/javascript" src="{{ "/js/jquery-3.3.1.min.js" | relURL }}"></script>
|
||
|
|
||
|
<!-- index.js -->
|
||
|
<script type="text/javascript" src="{{ "/js/index.js" | relURL }}"></script>
|
||
|
|
||
|
<!-- local time -->
|
||
|
{{ if .Site.Params.localTime }}
|
||
|
<script type="text/javascript" src="{{ "/js/moment.js" | relURL }}"></script>
|
||
|
<script type="text/javascript" src="{{ "/js/moment-timezone.js" | relURL }}"></script>
|
||
|
<script type="text/javascript" src="{{ "/js/moment-timezone-with-data-2012-2022.js" | relURL }}"></script>
|
||
|
<script>
|
||
|
$(document).ready(function() {
|
||
|
var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
|
||
|
$('#time').html(time);
|
||
|
})
|
||
|
</script>
|
||
|
{{ end }}
|
||
|
|
||
|
<!-- Google Analytics -->
|
||
|
{{ template "_internal/google_analytics_async.html" . }}
|