mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
65 lines
2.4 KiB
HTML
65 lines
2.4 KiB
HTML
<script src="/assets/js/kremalicious3.min.js" async></script>
|
|
|
|
{% if jekyll.environment == "production" %}
|
|
<script>
|
|
var _paq = _paq || [];
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="//analytics.kremalicious.com/";
|
|
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
|
_paq.push(['setSiteId', 1]);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<noscript><p><img src="//analytics.kremalicious.com/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
|
|
{% endif %}
|
|
|
|
<script>
|
|
(function(window, dnt) {
|
|
|
|
if (dnt !== "yes" && dnt !== "1") {
|
|
// Google Analytics async snippet
|
|
// http://goo.gl/3FPNDx
|
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};
|
|
ga.l=+new Date;
|
|
|
|
// Create the GA tracker
|
|
ga('create', 'UA-1441794-2', 'auto', {siteSpeedSampleRate: 10});
|
|
|
|
{% if jekyll.environment != 'production' %}
|
|
// In non-production mode, simply log GA hits to the console.
|
|
// Note, tasks must be set before sending the first hit
|
|
ga(function(tracker) {
|
|
tracker.set('sendHitTask', function() {
|
|
// Throw to stop subsequent tasks.
|
|
throw 'Abort tracking in non-production environments.'
|
|
});
|
|
});
|
|
{% endif %}
|
|
|
|
// Send initial pageview
|
|
ga('send', 'pageview');
|
|
}
|
|
|
|
// Track uncaught errors
|
|
window.onerror = function(message, url, line, col) {
|
|
var desc = message + ' (line: ' + line + ', url: ' + url + ', col: '
|
|
+ col + ')';
|
|
|
|
ga('send', 'exception', {
|
|
exDescription: 'window.onerror: ' + desc,
|
|
exFatal: false
|
|
});
|
|
};
|
|
|
|
}(window, navigator.doNotTrack || navigator.msDoNotTrack || null));
|
|
</script>
|
|
|
|
{% if jekyll.environment == "production" %}
|
|
<script async src="//www.google-analytics.com/analytics.js"></script>
|
|
{% else %}
|
|
<script async src="//www.google-analytics.com/analytics_debug.js"></script>
|
|
{% endif%}
|