2016-06-09 14:27:23 +02:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
2016-06-09 15:04:10 +02:00
|
|
|
# HTML
|
2016-06-09 16:08:43 +02:00
|
|
|
# compile '/**/*.html' do
|
|
|
|
# layout '/default.*'
|
|
|
|
# end
|
|
|
|
|
2016-06-09 14:27:23 +02:00
|
|
|
compile '/**/*.html' do
|
2016-06-09 16:08:43 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
compile '/**/*.erb' do
|
|
|
|
filter :erb
|
2016-06-09 14:27:23 +02:00
|
|
|
end
|
|
|
|
|
2016-06-09 17:57:40 +02:00
|
|
|
compile '/**/*.coffee' do
|
|
|
|
filter :coffeescript
|
|
|
|
write "#{item.identifier.without_ext}.js"
|
|
|
|
end
|
|
|
|
|
2016-06-09 15:04:10 +02:00
|
|
|
# Markdown
|
|
|
|
compile '/**/*.md' do
|
|
|
|
filter :kramdown
|
|
|
|
layout '/default.*'
|
|
|
|
end
|
2016-06-09 14:27:23 +02:00
|
|
|
|
2016-06-09 16:08:43 +02:00
|
|
|
route '/index.erb' do
|
|
|
|
'/index.html'
|
|
|
|
end
|
|
|
|
|
2016-06-09 14:27:23 +02:00
|
|
|
route '/**/*.{html,md}' do
|
2016-06-09 16:08:43 +02:00
|
|
|
"#{item.identifier.without_ext}/index.html"
|
2016-06-09 14:27:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
compile '/**/*' do
|
|
|
|
write item.identifier.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
layout '/**/*', :erb
|