winton / stasis

Static sites made powerful
http://stasis.me
MIT License
677 stars 56 forks source link

Render without layout on "layout false" [#73] #87

Closed hughbien closed 3 years ago

hughbien commented 11 years ago

Not sure if you'd want this feature, but it mimics Rail's disabling of layouts (as discussed by whitehat101 in #73). Example in controller.rb:

layout 'default_layout.html.haml'

before 'page.html.haml' do
  layout false # render content without layout
end
whitehat101 commented 11 years ago

I haven't tried it, but thanks for taking the time to implement this feature.