class Lookbook::ScenarioEntity

def template_file_path(template_path)

def template_file_path(template_path)
  return full_template_path(template_path) if respond_to?(:full_template_path, true)
  search_dirs = [*Engine.preview_paths, *Engine.view_paths]
  template_path = "#{template_path.to_s.sub(/\..*$/, "")}.html.*"
  PathUtils.determine_full_path(template_path, search_dirs)
end