Sha256: 75a74a2dc81bf983ce41b5e89774e631f5ee23429a14d166ec4634f6bd23fb2a
Contents?: true
Size: 860 Bytes
Versions: 17
Compression:
Stored size: 860 Bytes
Contents
<div id="menubar"> <% selected_section_parent = @website_section.nil? ? nil : @website_section.parent %> <% unless @website_sections.nil? %> <ul id="menu"> <% @website_sections.each do |section| if section.in_menu if section.allow_access?(@current_user, :view) if (!@website_section.nil? && section.id == @website_section.id) or (!selected_section_parent.nil? and selected_section_parent.id == section.id) %> <li class="selected"> <% selected_section_parent = section else %> <li> <%end%> <a href="<%= section.path %>"><span><%= section.title %></span></a> </li> <%end%> <% end %> <% end %> </ul> </div> <br/> <% end %>
Version data entries
17 entries across 17 versions & 1 rubygems