Add support for Cloudflare analytics (#798)
This commit is contained in:
parent
d1806ad223
commit
a531737107
@ -9,6 +9,7 @@
|
||||
- Added support for Patreon, Medium, and Itch.io in the social network links in the footer (#783, #788)
|
||||
- Fixed bug where special characters in the title led to broken share tags (#744)
|
||||
- Updated staticman from using v2 (public servers) to v3 (private servers) due to the public servers becoming obsolete (#775)
|
||||
- Added support for Cloudflare Analytics (#797)
|
||||
|
||||
## v5.0.0 (2020-09-15)
|
||||
|
||||
|
@ -133,6 +133,9 @@ footer-link-col: "#404040"
|
||||
# Fill in your Google Analytics ID to track your website using Google Analytics
|
||||
#google_analytics: ""
|
||||
|
||||
# Fill in your Cloudflare Analytics beacon token to track your website using Cloudflare Analytics
|
||||
#cloudflare_analytics: ""
|
||||
|
||||
# Google Tag Manager ID
|
||||
#gtm: ""
|
||||
|
||||
|
8
_includes/cloudflare_analytics.html
Normal file
8
_includes/cloudflare_analytics.html
Normal file
@ -0,0 +1,8 @@
|
||||
{% if site.cloudflare_analytics %}
|
||||
<!-- Cloudflare Web Analytics -->
|
||||
<script defer
|
||||
src='https://static.cloudflareinsights.com/beacon.min.js'
|
||||
data-cf-beacon='{"token": "{{ site.cloudflare_analytics}}"}'>
|
||||
</script>
|
||||
<!-- End Cloudflare Web Analytics -->
|
||||
{% endif %}
|
@ -44,6 +44,7 @@
|
||||
{% include gtag.html %}
|
||||
{% include gtm_head.html %}
|
||||
{% include google_analytics.html %}
|
||||
{% include cloudflare_analytics.html %}
|
||||
|
||||
{% if layout.common-ext-css %}
|
||||
{% for css in layout.common-ext-css %}
|
||||
|
Loading…
Reference in New Issue
Block a user