Created
August 5, 2009 14:39
-
-
Save tsmango/162703 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
<!-- /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