Add support for Google gtags (Google Analytics v4)

This commit is contained in:
Héctor J. Hurtado Ruesga 2020-11-01 13:09:04 +01:00
parent 7b7303abef
commit e8808d252c
2 changed files with 16 additions and 0 deletions

View File

@ -38,8 +38,11 @@ Additionally, you may choose to set the following optional variables:
```yml
show_downloads: ["true" or "false" to indicate whether to provide a download URL]
google_analytics: [Your Google Analytics tracking ID]
google_analytics_v4: [Your Google Analytics v4 (gtags) tracking ID]
```
`google_analytics` and `google_analytics_v4` are incompatible, you have to choose one of them, if both are set the later takes precedence.
### Stylesheet
If you'd like to add your own custom styles:

View File

@ -1,6 +1,17 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
{% if site.google_analytics_v4 %}
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics_v4 }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{ site.google_analytics_v4 }}');
</script>
{% endif %}
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -35,6 +46,7 @@
</div>
{% if site.google_analytics %}
{% unless site.google_analytics_v4 %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
@ -43,6 +55,7 @@
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endunless %}
{% endif %}
</body>
</html>