Module: SimpleStaticPages::ApplicationHelper

Defined in:
app/helpers/simple_static_pages/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#simple_menuObject



3
4
5
6
7
8
9
10
11
12
13
# File 'app/helpers/simple_static_pages/application_helper.rb', line 3

def simple_menu
  capture_haml do
    haml_tag :ul do
      @pages.each do |page|
        haml_tag :li do
          haml_concat link_to page.title, simple_page_path(page)
        end
      end
    end
  end
end