22 lines
654 B
HTML
22 lines
654 B
HTML
{% if site.enable_tooltips %}
|
|
<!-- Enable Tooltips -->
|
|
<script type="text/javascript">
|
|
$(function () {$('[data-toggle="tooltip"]').tooltip()})
|
|
</script>
|
|
{% endif %}
|
|
|
|
{% if site.enable_google_analytics %}
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag() { dataLayer.push(arguments); }
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', '{{ site.google_analytics }}');
|
|
</script>
|
|
{% endif %}
|
|
|
|
<!-- Load Common JS -->
|
|
<script src="{{ '/assets/js/common.js' | relative_url }}"></script>
|