Skip to content

Instantly share code, notes, and snippets.

@dbarison
Forked from daz/_menu.html.erb
Created July 5, 2014 15:01
Show Gist options
  • Save dbarison/52e1fb1af36ef2f7baa5 to your computer and use it in GitHub Desktop.
Save dbarison/52e1fb1af36ef2f7baa5 to your computer and use it in GitHub Desktop.
<% if article.is_childless? %>
<li><%= link_to article.title, article_path(article) %></li>
<% else %>
<li class="dropdown">
<%= link_to '#', class: 'dropdown-toggle', data: { toggle: 'dropdown'} do %>
<%= article.title %>
<b class="caret"></b>
<% end %>
<ul class="dropdown-menu">
<%= render partial: 'site/menu', collection: article.children, as: :article %>
</ul>
</li>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment