Method: Chisel::ViewHelper#link_to_page
- Defined in:
- lib/chisel/view_helper.rb
#link_to_page(page, text, options = {}) ⇒ Object
37 38 39 40 41 42 |
# File 'lib/chisel/view_helper.rb', line 37 def link_to_page(page, text, = {}) page_output_path = @site_dir.page_output_path(page, @output_path.dirname) href = page_output_path.relative_path_from(@output_path.dirname).to_s link_to(href, text, ) end |