class Mustache

def render(data = template, ctx = {})

all special {{tags}} and {{#sections}}replaced{{/sections}}.
Parses our fancy pants template file and returns normal file with
def render(data = template, ctx = {})
  templateify(data).render(context.update(ctx))
end