zeus.ugent.be/Rules

34 lines
429 B
Plaintext
Raw Normal View History

2016-06-09 12:27:23 +00:00
#!/usr/bin/env ruby
2016-06-09 13:04:10 +00:00
# HTML
2016-06-09 14:08:43 +00:00
# compile '/**/*.html' do
# layout '/default.*'
# end
2016-06-09 12:27:23 +00:00
compile '/**/*.html' do
2016-06-09 14:08:43 +00:00
end
compile '/**/*.erb' do
filter :erb
2016-06-09 12:27:23 +00:00
end
2016-06-09 13:04:10 +00:00
# Markdown
compile '/**/*.md' do
filter :kramdown
layout '/default.*'
end
2016-06-09 12:27:23 +00:00
2016-06-09 14:08:43 +00:00
route '/index.erb' do
'/index.html'
end
2016-06-09 12:27:23 +00:00
route '/**/*.{html,md}' do
2016-06-09 14:08:43 +00:00
"#{item.identifier.without_ext}/index.html"
2016-06-09 12:27:23 +00:00
end
compile '/**/*' do
write item.identifier.to_s
end
layout '/**/*', :erb