module Roda::RodaPlugins::ViewOptions::InstanceMethods

def parse_template_opts(template, opts)

and locals into the returned hash.
template isn't a layout template, merge the options
If view options or locals have been set and this
def parse_template_opts(template, opts)
  t_opts = super
  if !t_opts[:_is_layout] && (v_opts = @_view_options)
    t_opts.merge!(v_opts)
  end
  t_opts
end