28 lines
791 B
Twig
28 lines
791 B
Twig
<!--
|
|
What goes very last on the page.
|
|
right before the /body
|
|
like javascript
|
|
or analytics
|
|
-->
|
|
{% include '@novaconium/javascript/page-edit.html.twig' %}
|
|
|
|
{% if editor == 'ace' %}
|
|
{% include '@novaconium/javascript/ace.html.twig' %}
|
|
{% endif %}
|
|
|
|
{% if matomo > 0 %}
|
|
<!-- Matomo -->
|
|
<script>
|
|
var _paq = window._paq = window._paq || [];
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u = "//matomo.4lt.ca/";
|
|
_paq.push(['setTrackerUrl', u + 'matomo.php']);
|
|
_paq.push(['setSiteId', {{ matomo }}]);
|
|
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
|
|
g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s);
|
|
})();
|
|
</script>
|
|
<!-- End Matomo Code -->
|
|
{% endif %} |