Files
12factor/web.rb
T
2011-06-03 02:03:48 -07:00

25 lines
331 B
Ruby

require 'sinatra'
require 'maruku'
get '/' do
erb :home
end
get '/:factor' do |factor|
@factor = factor
erb :factor
end
helpers do
def render_markdown(file)
markdown = File.read("content/#{file}.md")
Maruku.new(markdown).to_html
rescue Errno::ENOENT
halt 404
end
end
not_found do
"Page not found"
end