aboutsummaryrefslogtreecommitdiffstats
path: root/bootlex/templates/analytics.html
diff options
context:
space:
mode:
authorAlexander Jung-Loddenkemper <alexander.julo@googlemail.com>2012-03-18 20:04:02 +0100
committerAlexander Jung-Loddenkemper <alexander.julo@googlemail.com>2012-03-18 20:04:02 +0100
commitf3060b4474f6364537b500713c4883ddf4002d9e (patch)
treec703ba271b4c7b960f1cfd011063c023f5db19a2 /bootlex/templates/analytics.html
parent6d2edf7db1bc74a1bb3b56b1d1c547aa01c3d79d (diff)
downloadpelican-themes-f3060b4474f6364537b500713c4883ddf4002d9e.zip
pelican-themes-f3060b4474f6364537b500713c4883ddf4002d9e.tar.gz
pelican-themes-f3060b4474f6364537b500713c4883ddf4002d9e.tar.bz2
merged analytics and changes to make bootlex xhtml strict
Diffstat (limited to 'bootlex/templates/analytics.html')
-rw-r--r--bootlex/templates/analytics.html22
1 files changed, 13 insertions, 9 deletions
diff --git a/bootlex/templates/analytics.html b/bootlex/templates/analytics.html
index 86c297c..2d7b5f2 100644
--- a/bootlex/templates/analytics.html
+++ b/bootlex/templates/analytics.html
@@ -1,11 +1,15 @@
{% if GOOGLE_ANALYTICS %}
- <script type="text/javascript">
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
- </script>
- <script type="text/javascript">
- try {
- var pageTracker = _gat._getTracker("{{GOOGLE_ANALYTICS}}");
- pageTracker._trackPageview();
- } catch(err) {}</script>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', '{{ 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://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script>
{% endif %} \ No newline at end of file