module Roda::RodaPlugins::Render::InstanceMethods

def template_path(opts)

The path for the given template.
def template_path(opts)
  render_opts = render_opts()
  "#{opts[:views] || render_opts[:views]}/#{template_name(opts)}.#{opts[:ext] || render_opts[:ext] || render_opts[:engine]}"
end