aboutsummaryrefslogtreecommitdiffstats
path: root/simple-bootstrap
diff options
context:
space:
mode:
authorStefan Muthers <muthers@climate.unibe.ch>2014-10-23 13:49:18 +0200
committerStefan Muthers <muthers@climate.unibe.ch>2014-10-23 13:49:18 +0200
commitb028b73bab51d11fe625b7b46bc0a80e9e1cccd5 (patch)
tree7296177312002329136519f328a27a9cd2465759 /simple-bootstrap
parent4f930ce5f6691c452307f1c779168051e7024850 (diff)
downloadpelican-themes-b028b73bab51d11fe625b7b46bc0a80e9e1cccd5.zip
pelican-themes-b028b73bab51d11fe625b7b46bc0a80e9e1cccd5.tar.gz
pelican-themes-b028b73bab51d11fe625b7b46bc0a80e9e1cccd5.tar.bz2
+ piwik support for simple-bootstrab
Diffstat (limited to 'simple-bootstrap')
-rwxr-xr-xsimple-bootstrap/templates/base.html1
-rw-r--r--simple-bootstrap/templates/piwik.html16
2 files changed, 17 insertions, 0 deletions
diff --git a/simple-bootstrap/templates/base.html b/simple-bootstrap/templates/base.html
index 68b8a10..d9c71b9 100755
--- a/simple-bootstrap/templates/base.html
+++ b/simple-bootstrap/templates/base.html
@@ -59,5 +59,6 @@
</footer><!-- /#contentinfo -->
</div><!-- container -->
{% include 'analytics.html' %}
+ {% include 'piwik.html' %}
</body>
</html>
diff --git a/simple-bootstrap/templates/piwik.html b/simple-bootstrap/templates/piwik.html
new file mode 100644
index 0000000..bf6baaa
--- /dev/null
+++ b/simple-bootstrap/templates/piwik.html
@@ -0,0 +1,16 @@
+{% if PIWIK_URL and PIWIK_SITE_ID %}
+<script type="text/javascript">
+{% if PIWIK_SSL_URL %}
+ var pkBaseURL = (("https:" == document.location.protocol) ? "https://{{ PIWIK_SSL_URL }}/" : "http://{{ PIWIK_URL }}/");
+{% else %}
+ var pkBaseURL = (("https:" == document.location.protocol) ? "https://{{ PIWIK_URL }}/" : "http://{{ PIWIK_URL }}/");
+{% endif %}
+document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
+</script><script type="text/javascript">
+try {
+var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", {{ PIWIK_SITE_ID }});
+piwikTracker.trackPageView();
+piwikTracker.enableLinkTracking();
+} catch( err ) {}
+</script><noscript><p><img src="http://{{ PIWIK_URL }}/piwik.php?idsite={{ PIWIK_SITE_ID }}" style="border:0" alt="" /></p></noscript>
+{% endif %}