-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rules
73 lines (60 loc) · 2.05 KB
/
Rules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env ruby
##############################################################################
# SITEMAP, ROBOTS & S3SITEDEPLOY
##############################################################################
['/sitemap.xml', '/feed.xml', '/robots.txt'].each do |r|
compile r do
filter :erb
write item.identifier.to_s
end
end
compile '/assets/style.css' do
filter :erb
write item.identifier.without_ext + '-' + contenthash(item) + '.css'
end
compile '/assets/*.svg' do
write item.identifier.without_ext + '-' + contenthash(item) + '.svg'
end
compile '/assets/favicons/*' do
write item.identifier.without_ext + '.' + contenthash(item) + '.' + item.identifier.ext
end
###############################################################################
# ARTICLES
###############################################################################
compile '/article/*.markdown' do
filter :erb
filter :kramdown
layout '/article.html'
write item.identifier.without_ext + '/index.html'
end
compile '/article/*/*.jpg', rep: :w900 do
filter :thumbnails, width: 900
write item.identifier.without_ext + '-thumbnail-w900.' + item.identifier.ext
end
compile '/article/*/*.jpg', rep: :w400 do
filter :thumbnails, width: 400
write item.identifier.without_ext + '-thumbnail-w400.' + item.identifier.ext
end
compile '/article/*/*' do
write item.identifier.to_s
end
##############################################################################
# Default
##############################################################################
compile '/index.html' do
filter :erb
layout '/default.html'
write '/index.html'
end
compile '/**/*.html' do
filter :erb
layout '/default.html'
write item.identifier.without_ext + '/index.html'
end
passthrough '/lib/**/*'
passthrough '/s3sup.toml'
##############################################################################
# Results for layout files
##############################################################################
# All layouts through ERB
layout '/**/*', :erb