26 lines
866 B
HTML
26 lines
866 B
HTML
|
{% if site.google_analytics %}
|
||
|
<!-- Asynchronous Google Analytics snippet -->
|
||
|
<script>
|
||
|
var _gaq = _gaq || [];
|
||
|
var pluginUrl =
|
||
|
'//www.google-analytics.com/plugins/ga/inpage_linkid.js';
|
||
|
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
|
||
|
_gaq.push(['_setAccount', '{{ site.google_analytics }}']);
|
||
|
_gaq.push(['_trackPageview']);
|
||
|
|
||
|
(function() {
|
||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||
|
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
|
||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||
|
})();
|
||
|
</script>
|
||
|
{% endif %}
|
||
|
|
||
|
<!-- gist embed -->
|
||
|
{% if page.gistembed %}
|
||
|
{% include gist_embed.html %}
|
||
|
{% endif %}
|
||
|
|
||
|
<!-- disqus comments -->
|
||
|
{% if page.comments %}{% include disqus_comments.html %}{% endif %}
|