Replaced Cloudflare analytics with Mamato

This commit is contained in:
Quang Thang 2021-01-27 18:34:27 +07:00
parent 35505f624c
commit b9bb26312d
2 changed files with 26 additions and 7 deletions

View File

@ -100,9 +100,11 @@ gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into t
# Color scheme currently only supports "dark", "light"/nil (default), or a custom scheme that you define
color_scheme: nil
# Cloudflare Analytics
# Mamato Analytics
cf_tracking: a3bc8207481e41caad5cb16558187c6b
mamato_enabled: true
mamato_url: "https://track.quangthang.men"
mamato_site_id: 2
# Katex
katex:

View File

@ -1,9 +1,26 @@
{%- if site.footer_content -%}
<p class="text-small text-grey-dk-100 mb-0">{{ site.footer_content }}</p>
{% if site.cf_tracking != nil %}
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "{{ site.cf_tracking }}"}'>
{% if site.mamato_enabled == true %}
</script>
<!-- End Cloudflare Web Analytics -->
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="{{ site.mamato_url }}/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '{{ site.mamato_site_id }}']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<noscript>
<!-- Matomo Image Tracker-->
<img referrerpolicy="no-referrer-when-downgrade" src="{{ site.mamato_url }}/matomo.php?idsite={{ site.mamato_site_id }}&amp;rec=1" style="border:0" alt="" />
<!-- End Matomo -->
</noscript>
{% endif %}
{%- endif -%}