base = $sroot; } return $this->base; } function title($title) { if ($title) $this->title = $title; return $this->title; } function stylesheet($stylesheet) { if ($stylesheet) $this->stylesheet = $stylesheet; return $this->stylesheet; } function add_style($style) { if ($style) $this->style = $style; return $this->style; } function render_head_contents() { $tout = $this->title; if ($this->subtitle) { $tout = $tout . " -- " . $this->subtitle; } echo "$tout"; echo "stylesheet\" media=\"screen\"/>"; sinclude("meta.inc"); } }