aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/base.html2
-rw-r--r--templates/includes/counter.html5
2 files changed, 6 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index 43437c8..a9edbde 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -32,7 +32,7 @@
{% block content %}{% endblock %}
</article>
- <script async data-goatcounter="https://stats.popov.link/count" src="/stats.js"></script>
+ {% include 'includes/counter.html' %}
</body>
</html> \ No newline at end of file
diff --git a/templates/includes/counter.html b/templates/includes/counter.html
new file mode 100644
index 0000000..3467b6f
--- /dev/null
+++ b/templates/includes/counter.html
@@ -0,0 +1,5 @@
+{% set url = current_url | default(value='/') %}
+
+{% if url is not containing('.onion') %}
+<script async data-website-id="c3d1c4c4-3d33-4523-8829-90eb352fc3aa" src="https://analytics.umami.is/script.js"></script>
+{% endif %} \ No newline at end of file