middleman/spec/fixtures/sample/init.rb

29 lines
563 B
Ruby
Raw Normal View History

2009-11-03 21:34:57 +01:00
# enable :maruku
get "/inline-js.html" do
haml :"inline-js.html", :layout => false
2009-11-03 21:49:54 +01:00
end
get "/page-class.html" do
haml :"page-classes.html", :layout => false
end
get "/sub1/page-class.html" do
haml :"page-classes.html", :layout => false
end
get "/sub1/sub2/page-class.html" do
haml :"page-classes.html", :layout => false
end
get "/auto-css.html" do
haml :"auto-css.html", :layout => false
end
get "/sub1/auto-css.html" do
haml :"auto-css.html", :layout => false
end
get "/sub1/sub2/auto-css.html" do
haml :"auto-css.html", :layout => false
2009-11-03 21:34:57 +01:00
end