class Mustache

def self.render_file(name, context = {})

render the file as a template.
Given a file name and an optional context, attempts to load and
def self.render_file(name, context = {})
  render(partial(name), context)
end