Skip to content

Instantly share code, notes, and snippets.

@cameroooon
Created November 13, 2012 03:07
Show Gist options
  • Select an option

  • Save cameroooon/4063719 to your computer and use it in GitHub Desktop.

Select an option

Save cameroooon/4063719 to your computer and use it in GitHub Desktop.
Simple application boilerplate using HAML
!!!
/[if lt IE 7]
%html{:class => "no-js lt-ie9 lt-ie8 lt-ie7"}
/[if IE 7]
%html{:class => "no-js lt-ie9 lt-ie8"}
/[if IE 8]
%html{:class => "no-js lt-ie9"}
\<!--[if gt IE 8]><!-->
%html{:class => "no-js"}
\<!--<![endif]-->
%head
%title
= stylesheet_link_tag "application", :media => "all"
= javascript_include_tag "modernizr.dev.min"
= csrf_meta_tags
%body
= yield
= javascript_include_tag "application"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment