diff options
Diffstat (limited to 'simple-bootstrap')
-rw-r--r-- | simple-bootstrap/templates/analytics.html | 11 | ||||
-rwxr-xr-x | simple-bootstrap/templates/base.html | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/simple-bootstrap/templates/analytics.html b/simple-bootstrap/templates/analytics.html new file mode 100644 index 0000000..b96f455 --- /dev/null +++ b/simple-bootstrap/templates/analytics.html @@ -0,0 +1,11 @@ +{% 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> +{% endif %}
\ No newline at end of file diff --git a/simple-bootstrap/templates/base.html b/simple-bootstrap/templates/base.html index 934c488..68b8a10 100755 --- a/simple-bootstrap/templates/base.html +++ b/simple-bootstrap/templates/base.html @@ -45,6 +45,7 @@ <li{% if author or tag %} class="active"{% endif %}{% block archclass %}{{ ARCHCLASS }}{% endblock archclass %}><a href="{{ SITEURL }}/archives.html">Archives</a></li> </ul> <h3 class="text-muted"><a href="{{ SITEURL }}">{{ SITENAME }}</a></h3> + <h2 class="text-muted">{{ SITESUBTITLE }}</h2> </div> {% block content %} {% endblock %} @@ -57,5 +58,6 @@ </address><!-- /#about --> </footer><!-- /#contentinfo --> </div><!-- container --> + {% include 'analytics.html' %} </body> </html> |