Method: Chisel::ViewHelper#link_to_page

Defined in:
lib/chisel/view_helper.rb


37
38
39
40
41
42
# File 'lib/chisel/view_helper.rb', line 37

def link_to_page(page, text, options = {})			
	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, options)
end