mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
278540ec60
Added analytics via matomo (analytics hosted on my personal site), also added privacy policy page with link in footer Updated code colors to match light theme Added display for Crow's financial supporters on OpenCollective Fixed Sidebar issue on narrow screens Fixed Get crow Icons being misaligned
20 lines
799 B
HTML
20 lines
799 B
HTML
<!-- Matomo -->
|
|
<script>
|
|
var _paq = window._paq = window._paq || [];
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="{{config.extra.analytics.link}}";
|
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
|
_paq.push(['setSiteId', '{{config.extra.analytics.id}}']);
|
|
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>
|
|
|
|
<noscript>
|
|
<img referrerpolicy="no-referrer-when-downgrade" src="https://thee.dev/matomo/matomo.php?idsite=1&rec=1&action_name={{ page.title }}" style="border:0" alt="" />
|
|
</noscript>
|
|
<!-- End Matomo Code -->
|