Skip to content

Instantly share code, notes, and snippets.

@excid3
Created February 9, 2012 19:21
Show Gist options
  • Save excid3/1782224 to your computer and use it in GitHub Desktop.
Save excid3/1782224 to your computer and use it in GitHub Desktop.
<!doctype html>
<!--[if lt IE 9]><html class="ie"><![endif]-->
<!--[if gte IE 9]><!--><html><!--<![endif]-->
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<%= csrf_meta_tag %>
<title>Equipe Evoke</title>
<%= stylesheet_link_tag 'application' %>
<%= javascript_include_tag "application" %>
<!--[if lt IE 9]>
<%= javascript_include_tag "html5" %>
<![endif]-->
</head>
<body lang="en">
<div id="wrapper">
<% if user_signed_in? %>
<%= render :partial => 'global/header_user' %>
<% else %>
<%= render :partial => 'global/header' %>
<% end %>
<%= render :partial => 'global/slidetab' %>
<%= yield %>
</div> <!-- #wrapper -->
</body>
</html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment