Skip to content

Instantly share code, notes, and snippets.

@ischroedi
Created February 20, 2009 13:03
Show Gist options
  • Save ischroedi/67441 to your computer and use it in GitHub Desktop.
Save ischroedi/67441 to your computer and use it in GitHub Desktop.
_section.html.erb
<% if section.children.empty? %>
<li>
<%#= link_to section.name, item.url %>
<%= link_to section.title, section_path(section) %>
</li>
<% else %>
<li>
<%#= link_to "#{item.name}<!--[if IE 7]><!-->", item.url %>
<%= link_to "#{section.title}<!--[if IE 7]><!-->", section_path(section) %><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<% section.children.each do |child| %>
<%= render :partial => "widgets/section", :locals => { :section => child } %>
<% end %>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<% end %>
_sections.html.erb
<ul class="menu">
<% @site.sections.each do |section| %>
<%= render :partial => "widgets/section", :locals => { :section => section } %>
<% end %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment