1
0
Fork 0

Move analytics into extra file

This commit is contained in:
Daniel Kempkens 2015-01-11 22:33:15 +01:00
parent 29abc59721
commit 5a49e6af6b
2 changed files with 17 additions and 17 deletions

16
_includes/analytics.html Normal file
View 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>

View file

@ -13,22 +13,6 @@
{% include foot.html %}
</div>
<!-- Asynchronous Google Analytics snippet -->
<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>
{% include analytics.html %}
</body>
</html>