module Roda::RodaPlugins::ViewOptions::InstanceMethods

def set_layout_options(opts)

Set branch/route options to use when rendering the layout
def set_layout_options(opts)
  if options = @_layout_options
    @_layout_options = options.merge!(opts)
  else
    @_layout_options = opts
  end
end