Override render so that it will look for a layout setting.
[Source]
# File lib/chaise.rb, line 4 4: def render(options = {}, extra_options = {}, &block) 5: options.merge!(:layout => @layout) unless @layout.nil? 6: super(options, extra_options, &block) 7: end
[Validate]