<?php class pluginAbout extends Plugin { public function init() { $this->dbFields = array( 'title'=>'', 'description'=>'' ); } public function onSiteHead() { $html = '<title>Blog – Layout Examples – Pure</title>'; return $html; } } ?>