First commit of base theme.

This commit is contained in:
Barry Clark 2014-02-06 19:18:00 -05:00
commit 72ac450454
20 changed files with 1089 additions and 0 deletions

14
_includes/analytics.html Normal file
View file

@ -0,0 +1,14 @@
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ site.googleanalytics.id }}']);
_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>