// get the template
Template template = siteContext.getTemplateManager().getTemplate(page.getFullTemplateName());
// merge the template
template.merge(context, page, writer);
writer.flush();
} catch (FileNotFoundException e) {
throw new GeneralException("File not found", e);
} catch (Exception e) {
throw new GeneralException("JPublish execution error", e);