Skip to content

Instantly share code, notes, and snippets.

@taf2
Created November 13, 2009 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taf2/233477 to your computer and use it in GitHub Desktop.
Save taf2/233477 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Configuration manager</title>
<%= stylesheet_link_tag 'style' %>
<%= yield :head %>
</head>
<body>
<!--[if IE]><div class="ie"><![endif]--><!--[if lt IE 7.]><div class="ie6"><![endif]-->
<div id="layout">
<div id="header">
<div class="wrap">
<%= yield :header %>
</div>
</div>
<div id="content">
<div class="wrap">
<div id="body">
<%= yield %>
</div>
<div id="sidebar">
<%= yield :sidebar %>
</div>
</div>
</div>
<div class="clear"></div>
<div id="footer">
<div class="wrap">
<%= yield :footer %>
</div>
</div>
</div>
<!--[if lt IE 7.]></div><![endif]--><!--[if IE]></div><![endif]-->
<%= yield :foot %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment