Add Google Global Site Tags configuration for new Google Analytics 4
This addition enables users to set their Google Measurement ID into the variable GOOGLE_GLOBAL_SITE_TAG in pelicanconf so that they can track analytics using GA 4 Closes #256 (#257)
This commit is contained in:
parent
ef20ea1fb3
commit
cf45bc0412
3 changed files with 18 additions and 0 deletions
|
@ -77,3 +77,7 @@ THEME_COLOR_AUTO_DETECT_BROWSER_PREFERENCE = True
|
||||||
THEME_COLOR_ENABLE_USER_OVERRIDE = True
|
THEME_COLOR_ENABLE_USER_OVERRIDE = True
|
||||||
|
|
||||||
USE_LESS = True
|
USE_LESS = True
|
||||||
|
|
||||||
|
# GOOGLE ANALYTICS
|
||||||
|
# For Google Analytics 4 use. Note that for old Google Analytics ('UA-XXXXX') the GOOGLE_ANALYTICS variable is included in publishconfig.py
|
||||||
|
# GOOGLE_GLOBAL_SITE_TAG = 'G-XXXXX'
|
||||||
|
|
|
@ -102,6 +102,10 @@
|
||||||
{% if GOOGLE_ANALYTICS %}
|
{% if GOOGLE_ANALYTICS %}
|
||||||
{% include "partial/ga.html" %}
|
{% include "partial/ga.html" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if GOOGLE_GLOBAL_SITE_TAG %}
|
||||||
|
{% include "partial/ggst.html" %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if BROWSER_COLOR %}
|
{% if BROWSER_COLOR %}
|
||||||
<!-- Chrome, Firefox OS and Opera -->
|
<!-- Chrome, Firefox OS and Opera -->
|
||||||
|
|
10
templates/partial/ggst.html
Normal file
10
templates/partial/ggst.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ GOOGLE_GLOBAL_SITE_TAG }}"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
|
||||||
|
gtag('config', '{{ GOOGLE_GLOBAL_SITE_TAG }}');
|
||||||
|
</script>
|
||||||
|
<!-- End of Global site tag (gtag.js) - Google Analytics -->
|
Loading…
Reference in a new issue