Erik Grinaker is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againpython-chrono / doc / source / templates / layout.html
- commit
- 6fef867aeec6
- parent
- 69984575061b
- branch
- default
don't include google analytics info in footer
1 |
69984575061b
|
{% extends "!layout.html" %} |
2 |
69984575061b
|
|
3 |
69984575061b
|
{%- block extrahead %} |
4 |
69984575061b
|
{{ super() }} |
5 |
69984575061b
|
<script type="text/javascript"> |
6 |
69984575061b
|
var _gaq = _gaq || []; |
7 |
69984575061b
|
_gaq.push(['_setAccount', 'UA-5410860-3']); |
8 |
69984575061b
|
_gaq.push(['_trackPageview']); |
9 |
69984575061b
|
</script> |
10 |
69984575061b
|
{% endblock %} |
11 |
69984575061b
|
|
12 |
69984575061b
|
{% block footer %} |
13 |
69984575061b
|
{{ super() }} |
14 |
69984575061b
|
<script type="text/javascript"> |
15 |
69984575061b
|
(function() { |
16 |
69984575061b
|
var ga = document.createElement('script'); |
17 |
69984575061b
|
ga.src = ('https:' == document.location.protocol ? |
18 |
69984575061b
|
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
19 |
69984575061b
|
ga.setAttribute('async', 'true'); |
20 |
69984575061b
|
document.documentElement.firstChild.appendChild(ga); |
21 |
69984575061b
|
})(); |
22 |
69984575061b
|
</script> |
23 |
69984575061b
|
{% endblock %} |