Skip to content

Instantly share code, notes, and snippets.

@tsmango
Created August 5, 2009 14:39
Show Gist options
  • Save tsmango/162703 to your computer and use it in GitHub Desktop.
Save tsmango/162703 to your computer and use it in GitHub Desktop.
<!-- /dashboard/_container - This partial is used as a template -->
<table id="dashboard">
<tr>
<td id="tabs">
<!-- Links to different areas of the dashboard -->
</td>
<td id="main">
<%= yield %>
</td>
</tr>
</table>
<!-- /messages/_inbox - This partial uses the dashboard _container as a wrapper -->
<% render(:layout => "/dashboard/container", :locals => {:selected => 'inbox'}) do -%>
<div id="messages">
<%= render @messages %>
</div>
<% end -%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment