module Roda::RodaPlugins::ViewOptions::InstanceMethods

def render_layout_opts

merge the options and locals into the returned hash.
If layout options or locals have been set,
def render_layout_opts
  opts = super
  if l_opts = @_layout_options
    opts.merge!(l_opts)
  end
  opts
end