13 lines
366 B
Text
13 lines
366 B
Text
if (!this.weblog.isPublic())
|
|
res.redirect(this.weblog.members.href("login"));
|
|
|
|
this.filter();
|
|
|
|
res.skin = "main";
|
|
|
|
res.title = encode (this.weblog.title);
|
|
if (this.title)
|
|
res.title += " - "+ encode(this.title);
|
|
res.head = this.weblog.renderSkinAsString("style");
|
|
res.body = this.weblog.renderSkinAsString("header");
|
|
res.body += this.renderSkinAsString("main");
|