Change breadcrumb html

This commit is contained in:
chris 2013-02-05 18:17:35 +08:00
parent bfad8467c8
commit 2a293734c7
1 changed files with 13 additions and 9 deletions

View File

@ -1,11 +1,15 @@
<% if not @ancestors.empty? %> <% if not @ancestors.empty? %>
<div class='category_list'> <ul class="breadcrumb">
<ul class='list'> <% @ancestors.each_with_index do |node, i| %>
<% @ancestors.each do |node| %> <% last = i == @ancestors.size-1 %>
<li class='active'> <li class='<%= 'active' if last %>'>
<%= link_to node.title, "/#{node.path}" %> <% if last %>
</li> <%= node.title %>
<% else %>
<%= link_to node.title, "/#{node.path}" %>
<span class="divider">/</span>
<% end %> <% end %>
</ul> </li>
</div> <% end %>
<% end %> </ul>
<% end %>