Skip to content

Instantly share code, notes, and snippets.

Created January 24, 2010 17:17
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 anonymous/285321 to your computer and use it in GitHub Desktop.
Save anonymous/285321 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" >
<head>
<meta name="Description" content="Your description"/>
<meta name="KeyWords" content="Your keywords"/>
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title><%= "Your Custom Title" || yield(:title) %></title>
<%= stylesheet_link_tag('default.css') %>
<%= javascript_include_tag(:defaults) %>
<%= yield(:head) -%>
</head>
<body>
<div>
<p>Place your css code for your menu here. Note that the file for your external css is public/stylesheets/default.css as listed above.</p>
</div>
<div>
<%= yield %>
</div>
<div>
<p>Place your css code for your footer here</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment