2013-11-15 06:47:08 +00:00
|
|
|
<% if @menu_page %>
|
2012-12-19 09:15:31 +00:00
|
|
|
<div class='category_list'>
|
2013-02-06 08:28:05 +00:00
|
|
|
<!-- <h3 class='h3'><%#= @menu_page.title %></h3> -->
|
2012-12-28 03:10:33 +00:00
|
|
|
<ul class='list'>
|
2013-11-15 06:47:08 +00:00
|
|
|
|
2012-12-21 06:56:12 +00:00
|
|
|
<% @menu_page.visible_children.each do |child| %>
|
2013-11-15 06:47:08 +00:00
|
|
|
<% if @menu_page.visible_children.nil?%>
|
|
|
|
<p>Test</p>
|
|
|
|
<li class="<%= @page_id.eql?(child.parent.id) ? 'active' : nil %>">
|
|
|
|
<a href="<%= (child.parent.class.to_s.eql?('Page') ? '/' + child.parent.path : child.parent.url) %>"><%= child.parent.title %></a>
|
|
|
|
</li>
|
|
|
|
<% else %>
|
2012-12-19 09:15:31 +00:00
|
|
|
<li class="<%= @page_id.eql?(child.id) ? 'active' : nil %>">
|
|
|
|
<a href="<%= (child.class.to_s.eql?('Page') ? '/' + child.path : child.url) %>"><%= child.title %></a>
|
|
|
|
</li>
|
2013-11-15 06:47:08 +00:00
|
|
|
<% end %>
|
2012-12-19 09:15:31 +00:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2013-11-15 06:47:08 +00:00
|
|
|
<% end %>
|