Skip to content

Instantly share code, notes, and snippets.

@taf2
Created November 3, 2009 14:45
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/225090 to your computer and use it in GitHub Desktop.
Save taf2/225090 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
<title>Configuration manager</title>
<%= stylesheet_link_tag 'style' %>
<%= yield :head %>
</head>
<body>
<!--[if IE]>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"> </script>
<div id="placehoder-shell"><div id="placeholder"></div></div>
<script>
CFInstall.check({
node: "placeholder",
destination: "http://leads.captico.com/"
});
</script>
<![endif]-->
<div class="wrap">
<div id="header">
<%= yield :header %>
</div>
<div id="content">
<%= yield %>
</div>
<div id="sidebar">
<%= yield :sidebar %>
</div>
<div class="clear"></div>
<div id="footer">
<%= yield :footer %>
</div>
</div>
<%= yield :foot %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment