Compare commits

..

No commits in common. "596d9f74be2841f083f472dd7a6390eb5ed6bbbf" and "4d4d75c9e548be669c30b9afaede4ea3afbc4a0b" have entirely different histories.

2 changed files with 27 additions and 15 deletions

View file

@ -226,6 +226,9 @@ allowed_domains = [
custom_subset = true custom_subset = true
[extra.analytics] [extra.analytics]
service = "plausible"
id = "softinio.com"
self_hosted_url = "https://wisdom.softinio.com"
# Specify which analytics service you want to use. # Specify which analytics service you want to use.
# Supported options: ["goatcounter", "umami", "plausible"] # Supported options: ["goatcounter", "umami", "plausible"]
# service = "goatcounter" # service = "goatcounter"

View file

@ -1,15 +1,24 @@
<!-- Matomo --> {% set analytics_service = config.extra.analytics.service %}
<script> {% set analytics_id = config.extra.analytics.id | default(value="") %}
var _paq = window._paq = window._paq || []; {% set self_hosted_url = config.extra.analytics.self_hosted_url | default(value="") %}
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']); {% if analytics_service == "goatcounter" %}
_paq.push(['enableLinkTracking']); {# Prevent non-demo sites from using the demo analytics account #}
(function () { {% if self_hosted_url == "https://tabi-stats.osc.garden" and config.base_url == "https://welpo.github.io/tabi" or
var u = "//wisdom.softinio.com/"; self_hosted_url != "https://tabi-stats.osc.garden" %}
_paq.push(['setTrackerUrl', u + 'matomo.php']); <script async {% if self_hosted_url %} data-goatcounter="{{ self_hosted_url ~ '/count' }}"
_paq.push(['setSiteId', '1']); src="{{ self_hosted_url ~ '/count.js' }}" {% else %}
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0]; data-goatcounter="https://{{ analytics_id }}.goatcounter.com/count" src="https://gc.zgo.at/count.js" {% endif
g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s); %}></script>
})(); {% endif %}
</script>
<!-- End Matomo Code --> {% elif analytics_service == "umami" %}
<script async defer {% if self_hosted_url %} data-website-id="{{ analytics_id }}"
src="{{ self_hosted_url ~ '/script.js' }}" {% else %} data-website-id="{{ analytics_id }}"
src="https://analytics.eu.umami.is/script.js" {% endif %} data-do-not-track="true">
</script>
{% elif analytics_service == "plausible" %}
<script defer data-domain="{{ analytics_id }}" src="{{ self_hosted_url ~ '/js/script.js' }}"></script>
{% endif %}