Created
November 3, 2009 14:45
-
-
Save taf2/225090 to your computer and use it in GitHub Desktop.
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
<!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