1
0
Fork 0
forked from wezm/wezm.net
wezm.net/Rules

34 lines
474 B
Text
Raw Normal View History

2009-11-09 23:42:38 +00:00
#!/usr/bin/env ruby
2009-11-22 06:11:43 +00:00
compile '/' do
layout 'home'
2009-11-22 06:11:43 +00:00
end
compile '/articles/', :rep => :json do
filter :erb
end
compile '/articles/' do
layout 'articles'
end
compile '/*/articles/' do
layout 'articles'
end
2009-11-09 23:42:38 +00:00
compile '*' do
2009-11-17 02:17:30 +00:00
filter :rdiscount
2009-11-09 23:42:38 +00:00
layout 'default'
end
route '/articles/', :rep => :json do
item.identifier + 'index.json'
end
route '/articles/' do
item.identifier + 'index.html'
end
2009-11-09 23:42:38 +00:00
route '*' do
item.identifier + 'index.html'
end
layout '*', :erb