module Roda::RodaPlugins::Partials::InstanceMethods

def each_partial(enum, template, opts=OPTS)

template (prefixing the template filename with an underscore).
For each object in the given enumerable, render the given
def each_partial(enum, template, opts=OPTS)
  unless opts.has_key?(:local)
    opts = Hash[opts]
    opts[:local] = render_each_default_local(template)
  end
  render_each(enum, partial_template_name(template.to_s), opts)
end