durfdoen-2.0/Rules

77 lines
1.4 KiB
Text
Raw Normal View History

2020-02-27 16:55:36 +01:00
#!/usr/bin/env ruby
preprocess do
# Fetch a list of theme names from all items and construct items from them
themas = @items.map { |i| i[:themas] }.flatten.uniq.compact
themas.each do |thema|
content = ''
attributes = {
naam: thema,
verenigingen: @items.filter{|i| i[:themas] and i[:themas].include?(thema)}.flatten.uniq.compact
}
identifier = "/themas/#{thema}"
@items.create(content, attributes, identifier)
end
end
compile '/{verenigingen,projecten}/*.md' do
2020-02-27 16:55:36 +01:00
filter :kramdown
layout '/vereniging.*'
layout '/default.*'
write ext: 'html'
end
compile '/events/*.md' do
filter :kramdown
layout '/event.*'
layout '/default.*'
write ext: 'html'
end
compile '/konventen/*.md' do
filter :kramdown
layout '/konvent.*'
layout '/default.*'
write ext: 'html'
end
compile '/themas/*' do
layout '/thema.*'
layout '/default.*'
write ext: 'html'
end
2020-02-27 16:55:36 +01:00
compile '/homepage.md' do
filter :kramdown
layout '/homepage.*'
layout '/default.*'
write '/index.html'
end
compile '/verenigingen.md' do
filter :kramdown
layout '/verenigingen.*'
layout '/default.*'
write ext: 'html'
end
compile '/*.md' do
filter :kramdown
layout '/default.*'
write ext: 'html'
end
compile '/stylesheets/*.{sass,scss}' do
syntax = @item.identifier.ext.to_sym
filter :sass, syntax: syntax, style: :compact
write ext: 'css'
end
# Catch-all
compile '/**/*' do
write item.identifier.to_s
end
layout '/**/*', :erb