I would like to put GA on the Blog module. So far I thought for other pages I could just modify page.ss and add the code there but as a SS neophyte, when looking at how Blog works, I couldn't see which template I should update or if indeed Blog does use the page.ss template. If it does, then I could just stick the code in this section
<div id="footer">
<div id="footer-valid">
<% include Footer %>
[ put blog code here]
</div>
</div>
</div>
</body>
</html>
The code I want to put in looks like this
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17218223-1']);
_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>
Should this work?
Thanks