Sometimes it's good to use "breadcrumbs" in <title></title> tag to define structure of categories and such.
If you want to use this kind of <title></title> tag instead of regular page title, then you could do the following:
<title><?php
$root = $pages->get('/');
foreach($page->parents()->remove($root)->append($page)->reverse() as $parent) { echo "{$parent->title} - "; }
echo "COMPANY NAME";
?></title>
Replace "COMPANY NAME" with the name of your company etc.













