Move analytics into extra file
This commit is contained in:
parent
29abc59721
commit
5a49e6af6b
2 changed files with 17 additions and 17 deletions
16
_includes/analytics.html
Normal file
16
_includes/analytics.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<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),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var host = window.location.hostname;
|
||||||
|
|
||||||
|
if (host !== 'localhost' && host !== '127.0.0.1') { // No tracking on localhost
|
||||||
|
ga('create', 'UA-28082386-3', host);
|
||||||
|
ga('set', 'anonymizeIp', true);
|
||||||
|
ga('send', 'pageview');
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
</script>
|
|
@ -13,22 +13,6 @@
|
||||||
{% include foot.html %}
|
{% include foot.html %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Asynchronous Google Analytics snippet -->
|
{% include analytics.html %}
|
||||||
<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),
|
|
||||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
||||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
var host = window.location.hostname;
|
|
||||||
|
|
||||||
if (host !== 'localhost' && host !== '127.0.0.1') { // No tracking on localhost
|
|
||||||
ga('create', 'UA-28082386-3', host);
|
|
||||||
ga('set', 'anonymizeIp', true);
|
|
||||||
ga('send', 'pageview');
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue