Module: NavigationHelper

Defined in:
app/helpers/navigation_helper.rb

Instance Method Summary collapse

Instance Method Details



3
4
5
6
7
8
9
10
# File 'app/helpers/navigation_helper.rb', line 3

def subnav
  # TODO: cache subnav
  if parent.present?
    parent_page = Page.find_by_path(parent)
    children = parent_page.immediate_children
    render 'shared/subnav', items: children if children.any?
  end
end