Skip to content

Instantly share code, notes, and snippets.

@alexshk
Created March 5, 2012 07:41
Show Gist options
  • Select an option

  • Save alexshk/1977336 to your computer and use it in GitHub Desktop.

Select an option

Save alexshk/1977336 to your computer and use it in GitHub Desktop.
boilerplate haml layout
!!! 5
/[if lt IE 7] <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7">
/[if IE 7 ] <html lang="en" class="no-js lt-ie9 lt-ie8">
/[if IE 8 ] <html lang="en" class="no-js lt-ie9">
<!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
%head
%meta(charset="utf-8")
%meta(http-equiv="X-UA-Compatible" content="IE=edge,chrome=1")
%title
%meta(name="description" content="")
%meta(name="viewport" content="width=device-width")
/[if lt IE 9]
%script(src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript")
= csrf_meta_tags
= stylesheet_link_tag "application", :media => "all"
%body
= yield
= javascript_include_tag "application"
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment