first commit

This commit is contained in:
Luca Chiricozzi
2014-12-29 23:08:56 +01:00
commit 5f1db9c0c9
22 changed files with 791 additions and 0 deletions

10
templates/analytics.html Normal file
View File

@@ -0,0 +1,10 @@
{% if GOOGLE_ANALYTICS %}
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','{{ GOOGLE_ANALYTICS }}');ga('send','pageview');
</script>
{% endif %}