1
0
Fork 0
blog.kempkens.io/_includes/scripts.html

24 lines
977 B
HTML
Raw Normal View History

2014-03-23 19:40:19 +00:00
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
2014-03-25 09:15:58 +00:00
<script>window.jQuery || document.write('<script src="{% asset_path vendor/jquery-1.9.1.js %}"><\/script>')</script>
{% javascript app %}
2014-03-23 19:40:19 +00:00
{% if site.google_analytics %}
<!-- Asynchronous Google Analytics snippet -->
<script>
2014-03-23 20:51:06 +00:00
(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');
2014-03-23 19:40:19 +00:00
2014-03-25 13:55:33 +00:00
(function() {
var host = window.location.hostname;
2014-03-25 13:55:33 +00:00
if (host !== 'localhost') { // No tracking on localhost
ga('create', '{{ site.google_analytics }}', host);
2014-05-03 14:58:36 +00:00
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
}
2014-03-25 13:55:33 +00:00
})();
2014-03-23 19:40:19 +00:00
</script>
{% endif %}
2014-03-23 20:51:06 +00:00
{% if page.comments %}{% include disqus_comments.html %}{% endif %}