Created
March 5, 2012 07:41
-
-
Save alexshk/1977336 to your computer and use it in GitHub Desktop.
boilerplate haml layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !!! 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