diff options
author | Scott Kensell <scott.kensell@prezi.com> | 2014-05-17 19:49:35 +0200 |
---|---|---|
committer | Scott Kensell <scott.kensell@prezi.com> | 2014-05-17 19:49:35 +0200 |
commit | 802d891506bb6ef2f9b57a5927f1ddd2349d2f9e (patch) | |
tree | 53e01dbc4b4669ec904e01aafeb995c35eaea03a /SoMA2/templates/piwik.html | |
parent | c3ae06311249b930bb057600d1c76063e847ef76 (diff) | |
download | pelican-themes-802d891506bb6ef2f9b57a5927f1ddd2349d2f9e.tar.gz |
Copied the SOMA template
Diffstat (limited to 'SoMA2/templates/piwik.html')
-rw-r--r-- | SoMA2/templates/piwik.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/SoMA2/templates/piwik.html b/SoMA2/templates/piwik.html new file mode 100644 index 0000000..ff459af --- /dev/null +++ b/SoMA2/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 %}
\ No newline at end of file |