antville/code/Story/main.hac
2001-07-09 20:18:21 +00:00

16 lines
436 B
Text

if (!this.weblog.isPublic())
res.redirect(this.weblog.members.href("login"));
this.filter();
res.skin = "main";
if (req.data.text && !this.isPostAllowed())
res.redirect(this.href());
else if (req.data.text)
this.addComment();
res.title = "Antville - " + this.weblog.title;
res.head = this.weblog.renderSkinAsString("style");
res.body = this.weblog.renderSkinAsString("header");
res.body += this.renderSkinAsString("main");