Skip to content

Commit

Permalink
top
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Golub committed Dec 2, 2009
1 parent 29f0dad commit 1abfaf0
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions templates/base.html
Expand Up @@ -7,6 +7,22 @@
<link rel="stylesheet" href="/static/css/base.css" type="text/css"/>
<link rel="shortcut icon" href="/static/images/favicon.png" type="image/png"/>
<link rel="alternate" href="/?format=atom" type="application/atom+xml" title="{{ escape(handler.settings["blog_title"]) }}"/>
{% if not handler.settings.get("debug") %}
<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1337900-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script');
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
ga.setAttribute('async', 'true');
document.documentElement.firstChild.appendChild(ga);
})();

</script>
{% end %}
{% block head %}{% end %}
</head>
<body>
Expand Down Expand Up @@ -67,21 +83,5 @@ <h3>{{ _("Elsewhere") }}</h3>
</div>
{% block bottom %}{% end %}
<script src="/static/javascript/retweet.js" type="text/javascript"></script>
{% if not handler.settings.get("debug") %}
<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1337900-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script');
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
ga.setAttribute('async', 'true');
document.documentElement.firstChild.appendChild(ga);
})();

</script>
{% end %}
</body>
</html>

0 comments on commit 1abfaf0

Please sign in to comment.