Skip to content

Instantly share code, notes, and snippets.

@marcpeabody
Created October 1, 2010 17:47
Show Gist options
  • Save marcpeabody/606564 to your computer and use it in GitHub Desktop.
Save marcpeabody/606564 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Recordstore</title>
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
</head>
<body>
<div id="container">
<div id="header">
<h1>Jimmy's Record Store</h1>
<h2>music for hipsters</h2>
</div>
<ul id="nav">
<li><%= link_to "Home", home_path %></li>
<li><%= link_to "Contact", contact_path %></li>
</ul>
<div id="content">
<%= yield %>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment