Sha256: bd204a7592e991f9eaaf500b1f15ace8d234023e59e19f7fd6dcf8cdae7fdc6b
Contents?: true
Size: 470 Bytes
Versions: 1
Compression:
Stored size: 470 Bytes
Contents
<ul class="nav nav-chapters"> <% sorts.each do |brother| %> <li class="<%= active_model(brother) %>"><%= link_to brother.name, url_for(:action => :show, :id => brother) %> <% unless brother.children.blank? %> <ul class="nav nav-chapters"> <% brother.children.each do |son| %> <li class="<%= active_model(son) %>"><%= link_to son.name, url_for(:action => :show, :id => son) %></li> <% end %> </ul> <% end %> </li> <% end %> </ul>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_detail-0.0.1 | app/views/rails_detail_admin/wikis/_nav.html.erb |