Skip to content

Commit

Permalink
GA
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Apr 29, 2012
1 parent a290865 commit 8a23b80
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
18 changes: 16 additions & 2 deletions _layouts/article.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@
<script src='/assets/javascripts/jquery-1.7.min.js' type='text/javascript'></script> <script src='/assets/javascripts/jquery-1.7.min.js' type='text/javascript'></script>
<script src='/assets/javascripts/toc.js'></script> <script src='/assets/javascripts/toc.js'></script>
<meta content='text/html;charset=utf-8' http-equiv='Content-Type' /> <meta content='text/html;charset=utf-8' http-equiv='Content-Type' />

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31282324-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>
</head> </head>
<body> <body>
<div class='navbar navbar-fixed-top'> <div class='navbar navbar-fixed-top'>
Expand Down Expand Up @@ -49,9 +63,9 @@
</div> </div>
<footer class='footer article'> <footer class='footer article'>
<p>This website was developed by <p>This website was developed by
&nbsp;<a href='http://github.com/clojurewerkz'>ClojureWerkz team</a>.</p> &nbsp;<a href='http://github.com/clojurewerkz'>ClojureWerkz team</a>.</p>
<p>Follow us on Twitter: <p>Follow us on Twitter:
&nbsp;<a href='http://twitter.com/clojurewerkz'>ClojureWerkz</a>,&nbsp;<a href='http://twitter.com/michaelklishin'>Michael Klishin</a>,&nbsp;<a href='http://twitter.com/ifesdjeen'>Alex P</a></p> &nbsp;<a href='http://twitter.com/clojurewerkz'>ClojureWerkz</a>,&nbsp;<a href='http://twitter.com/michaelklishin'>Michael Klishin</a>,&nbsp;<a href='http://twitter.com/ifesdjeen'>Alex P</a></p>
</footer> </footer>
</div> </div>
</body> </body>
Expand Down
18 changes: 16 additions & 2 deletions _layouts/default.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@
<script src='/assets/javascripts/jquery-1.7.min.js' type='text/javascript'></script> <script src='/assets/javascripts/jquery-1.7.min.js' type='text/javascript'></script>
<script src='/assets/javascripts/toc.js'></script> <script src='/assets/javascripts/toc.js'></script>
<meta content='text/html;charset=utf-8' http-equiv='Content-Type' /> <meta content='text/html;charset=utf-8' http-equiv='Content-Type' />

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31282324-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>
</head> </head>
<body style='height: 100%'> <body style='height: 100%'>
<div class='navbar navbar-fixed-top'> <div class='navbar navbar-fixed-top'>
Expand Down Expand Up @@ -42,9 +56,9 @@
{{ content }} {{ content }}
<footer class='footer'> <footer class='footer'>
<p>This website was developed by the <p>This website was developed by the
&nbsp;<a href='http://github.com/clojurewerkz'>ClojureWerkz Team</a>.</p> &nbsp;<a href='http://github.com/clojurewerkz'>ClojureWerkz Team</a>.</p>
<p>Follow us on Twitter: <p>Follow us on Twitter:
&nbsp;<a href='http://twitter.com/clojurewerkz'>ClojureWerkz</a>,&nbsp;<a href='http://twitter.com/michaelklishin'>Michael Klishin</a>,&nbsp;<a href='http://twitter.com/ifesdjeen'>Alex P</a></p> &nbsp;<a href='http://twitter.com/clojurewerkz'>ClojureWerkz</a>,&nbsp;<a href='http://twitter.com/michaelklishin'>Michael Klishin</a>,&nbsp;<a href='http://twitter.com/ifesdjeen'>Alex P</a></p>
</footer> </footer>
</div> </div>
</body> </body>
Expand Down

0 comments on commit 8a23b80

Please sign in to comment.