* if the page can't be written
*/
public void render() throws IOException {
final HTMLDocument doc = new HTMLDocument(
folder.createFile(getFileName()), context.getOutputEncoding());
doc.attr("lang", context.getLocale().getLanguage());
head(doc.head());
body(doc.body());
doc.close();
}