diff options
author | Stefan Muthers <muthers@climate.unibe.ch> | 2014-10-23 13:49:18 +0200 |
---|---|---|
committer | Stefan Muthers <muthers@climate.unibe.ch> | 2014-10-23 13:49:18 +0200 |
commit | b028b73bab51d11fe625b7b46bc0a80e9e1cccd5 (patch) | |
tree | 7296177312002329136519f328a27a9cd2465759 /simple-bootstrap/templates | |
parent | 4f930ce5f6691c452307f1c779168051e7024850 (diff) | |
download | pelican-themes-b028b73bab51d11fe625b7b46bc0a80e9e1cccd5.tar.gz |
+ piwik support for simple-bootstrab
Diffstat (limited to 'simple-bootstrap/templates')
-rwxr-xr-x | simple-bootstrap/templates/base.html | 1 | ||||
-rw-r--r-- | simple-bootstrap/templates/piwik.html | 16 |
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 %} |