added matomo
This commit is contained in:
parent
18555ff277
commit
bad8261c4c
|
@ -11,6 +11,24 @@
|
||||||
|
|
||||||
{% block javascripts %}
|
{% block javascripts %}
|
||||||
{{ encore_entry_script_tags('app') }}
|
{{ encore_entry_script_tags('app') }}
|
||||||
|
|
||||||
|
<!-- Matomo -->
|
||||||
|
<script>
|
||||||
|
const _paq = window._paq = window._paq || [];
|
||||||
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||||
|
_paq.push(['trackPageView']);
|
||||||
|
_paq.push(['enableLinkTracking']);
|
||||||
|
(function() {
|
||||||
|
const u = "https://analytics.24unix.net/";
|
||||||
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||||
|
_paq.push(['setSiteId', '1']);
|
||||||
|
const 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 -->
|
||||||
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
@ -20,7 +38,7 @@
|
||||||
|
|
||||||
<div class="container-fluid text-center">
|
<div class="container-fluid text-center">
|
||||||
<div class="row content d-flex justify-content-md-start">
|
<div class="row content d-flex justify-content-md-start">
|
||||||
<div class="col-sm-1 sidenav-left box text-start" id="main-menu">
|
<div class="col-sm-2 sidenav-left box text-start" id="main-menu">
|
||||||
<i class="fa fa-lg fa-fw fa-file-code-o" aria-hidden="true"></i> <a href="/projects">Projects</a><br>
|
<i class="fa fa-lg fa-fw fa-file-code-o" aria-hidden="true"></i> <a href="/projects">Projects</a><br>
|
||||||
<i class="fa fa-lg fa-fw fa-gitea" aria-hidden="true"></i> <a href="//git.24unix.net" target="_blank">Gitea</a> <i class="fa fa-external-link" aria-hidden="true"></i><br>
|
<i class="fa fa-lg fa-fw fa-gitea" aria-hidden="true"></i> <a href="//git.24unix.net" target="_blank">Gitea</a> <i class="fa fa-external-link" aria-hidden="true"></i><br>
|
||||||
<i class="fa fa-lg fa-fw fa-nextcloud" aria-hidden="true"></i> <a href="//cloud.24unix.net" target="_blank">NextCloud</a> <i class="fa fa-external-link" aria-hidden="true"></i>
|
<i class="fa fa-lg fa-fw fa-nextcloud" aria-hidden="true"></i> <a href="//cloud.24unix.net" target="_blank">NextCloud</a> <i class="fa fa-external-link" aria-hidden="true"></i>
|
||||||
|
@ -41,7 +59,13 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ quote }}
|
<div class="col">
|
||||||
|
<h1 class="q-title-show">Quote of the Moment</h1>
|
||||||
|
<div class="q-display p-3">
|
||||||
|
<i class="fa fa-quote-left mr-3"></i>
|
||||||
|
<p class="d-inline">{{ quote | markdown_to_html }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue