1
0
Fork 0
forked from wezm/wezm.net
wezm.net/Rules
2009-11-23 13:34:17 +11:00

30 lines
427 B
Ruby

#!/usr/bin/env ruby
compile '/' do
layout 'listing'
end
compile '/articles/', :rep => :json do
filter :erb
end
compile '/articles/' do
layout 'articles'
end
compile '*' do
filter :rdiscount
layout 'default'
end
route '/articles/', :rep => :json do
item.identifier + 'index.json'
end
route '/articles/' do
item.identifier + 'index.html'
end
route '*' do
item.identifier + 'index.html'
end
layout '*', :erb