Sha256: cdec0732d1c5bb51cb20e8bea6feb9eb7f9394653287535c361f95e447efc06c
Contents?: true
Size: 858 Bytes
Versions: 9
Compression:
Stored size: 858 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.has_access?(@current_user)%> <% 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
9 entries across 9 versions & 1 rubygems