public MustacheTemplate getTemplate(String templateURL) throws MustacheTemplateException {
try {
final Reader templateReader = templateLoader.getTemplate(templateURL);
return new JMustacheTemplate(compiler.compile(templateReader));
} catch (Exception e) {
throw new MustacheTemplateException(e);
}
}