Skip to content

Instantly share code, notes, and snippets.

@baileylo
Created October 15, 2010 07:27
Show Gist options
  • Select an option

  • Save baileylo/627776 to your computer and use it in GitHub Desktop.

Select an option

Save baileylo/627776 to your computer and use it in GitHub Desktop.
Adding some basic styling
<!DOCTYPE html>
<html>
<head>
<title>Rails Message Boards</title>
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
</head>
<body>
<div id="wrapper">
<div id="top_nav">
<h1><%= image_tag("rails.png", :size => '50x50') %> Rails Boards</h1>
<% if current_user %>
<%= link_to "Edit Profile", edit_user_path(current_user.id)%> |
<%= link_to "Logout", :logout%>
<% else %>
<%= link_to "Register", new_user_path%> |
<%= link_to "Login", :login %>
<% end %>
<div class="bclear"></div>
</div>
<div id="content">
<%= yield %>
</div>
<div id="footer">
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment