Injects the raw Google Analytics snippet via theme override so Google Search Console can verify site ownership. Removes the duplicate Material built-in analytics config. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
351 B
HTML
13 lines
351 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block extrahead %}
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VHRY2VKY9K"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'G-VHRY2VKY9K');
|
|
</script>
|
|
{% endblock %}
|