Skip to content
This repository has been archived by the owner on Jul 23, 2019. It is now read-only.

Commit

Permalink
Get some boilerplate up in here
Browse files Browse the repository at this point in the history
  • Loading branch information
calebhearth committed Apr 22, 2012
1 parent d49ebae commit 389519d
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions views/layout.jade
@@ -1,6 +1,31 @@
!!!
html
!!! 5
//if lt IE 7
html.no-js.lt-ie9.lt-ie8.lt-ie7(lang='en')
//if IE 7
html.no-js.lt-ie9.lt-ie8(lang='en')
//if IE 8
html.no-js.lt-ie9(lang='en')
//[if gt IE 8]><!
html.no-js(lang='en')
//<![endif]
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
body!= body
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge,chrome=1')
title!=title
meta(name='description', content='')
meta(name='viewport', content='width=device-width')
link(rel='stylesheet', href='stylesheets/style.css')
script(src='javascripts/libs/modernizr-2.5.3.min.js')
body!=body
script(src='//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js')
script
window.jQuery || document.write('<script src="javascripts/libs/jquery-1.7.2.min.js"><\\/script>')
script(src='javascripts/plugins.js')
script(src='javascripts/script.js')
//- change UA-XXXXX-X to your id and outdent the following:
//-
script
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));

0 comments on commit 389519d

Please sign in to comment.