orbit-basic/app/views/front/show_breadcrumb.html.erb

12 lines
306 B
Plaintext
Raw Normal View History

2013-01-31 11:20:55 +00:00
<% if not @ancestors.empty? %>
<div class='category_list'>
<ul class='list'>
<%= @ancestors.each do |node| %>
<li class='active'>
<%= link_to node.title, (node.class.to_s.eql?('Page') ? '/' + node.path : node.url) %>
</li>
<% end %>
</ul>
</div>
<% end %>