2009-11-09 23:42:38 +00:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
2009-11-22 06:11:43 +00:00
|
|
|
compile '/' do
|
2010-01-30 04:33:54 +00:00
|
|
|
layout 'home'
|
2009-11-22 06:11:43 +00:00
|
|
|
end
|
|
|
|
|
2010-01-30 05:50:07 +00:00
|
|
|
compile '/articles/json/' do
|
2009-11-23 02:34:17 +00:00
|
|
|
filter :erb
|
|
|
|
end
|
2010-01-30 05:50:07 +00:00
|
|
|
compile '/technical/articles/json/' do
|
|
|
|
filter :erb
|
|
|
|
end
|
|
|
|
compile '/personal/articles/json/' do
|
|
|
|
filter :erb
|
|
|
|
end
|
|
|
|
|
2009-11-23 02:34:17 +00:00
|
|
|
compile '/articles/' do
|
2010-01-30 06:09:05 +00:00
|
|
|
filter :erb
|
2009-11-23 02:34:17 +00:00
|
|
|
layout 'articles'
|
|
|
|
end
|
2010-01-30 05:50:07 +00:00
|
|
|
compile '/technical/articles/' do
|
2010-01-30 06:09:05 +00:00
|
|
|
filter :erb
|
2010-01-30 05:50:07 +00:00
|
|
|
layout 'articles'
|
|
|
|
end
|
|
|
|
compile '/personal/articles/' do
|
2010-01-30 06:09:05 +00:00
|
|
|
filter :erb
|
2010-01-30 04:33:54 +00:00
|
|
|
layout 'articles'
|
|
|
|
end
|
2009-11-23 02:34:17 +00:00
|
|
|
|
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
|
|
|
|
|
2010-01-30 05:50:07 +00:00
|
|
|
route '/articles/json/' do
|
|
|
|
item.identifier + 'articles.json'
|
2009-11-23 02:34:17 +00:00
|
|
|
end
|
2010-01-30 05:50:07 +00:00
|
|
|
route '/technical/articles/json/' do
|
|
|
|
item.identifier + 'articles.json'
|
|
|
|
end
|
|
|
|
route '/personal/articles/json/' do
|
|
|
|
item.identifier + 'articles.json'
|
2009-11-23 02:34:17 +00:00
|
|
|
end
|
|
|
|
|
2009-11-09 23:42:38 +00:00
|
|
|
route '*' do
|
|
|
|
item.identifier + 'index.html'
|
|
|
|
end
|
|
|
|
|
|
|
|
layout '*', :erb
|