mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
30 lines
No EOL
550 B
Ruby
30 lines
No EOL
550 B
Ruby
with_layout false do
|
|
page "/inline-css.html"
|
|
page "/inline-js.html"
|
|
page "/inline-coffeescript.html"
|
|
page "/slim.html"
|
|
page "/data.html"
|
|
page "/page-classes.html"
|
|
page "/sub1/page-classes.html"
|
|
page "/sub1/sub2/page-classes.html"
|
|
|
|
%w{
|
|
/auto-css.html
|
|
/auto-css
|
|
/auto-css/
|
|
/auto-css/auto-css.html
|
|
/auto-css/sub/auto-css.html
|
|
}.each do |path|
|
|
page path
|
|
end
|
|
|
|
%w{
|
|
/auto-js.html
|
|
/auto-js
|
|
/auto-js/
|
|
/auto-js/auto-js.html
|
|
/auto-js/sub/auto-js.html
|
|
}.each do |path|
|
|
page path
|
|
end
|
|
end |