Deault page title is What is Joomla? and site name is Joomla!.
We'll do next title: What is Joomla? | [Joomla! (page name | website name)
It's really easy to do.
1. Open the file libraries\joomla\document\html\renderer\head.php, find the line #53:
Code: Select all
function fetchHead(&$document)
{
Code: Select all
global $mainframe;
$SiteName = $mainframe->getCfg('sitename');
Code: Select all
$strHtml .= $tab.'<title>'.htmlspecialchars($document->getTitle()).'</title>'.$lnEnd;
Code: Select all
$strHtml .= $tab.'<title>'.htmlspecialchars($document->getTitle()).' - '.$SiteName.'</title>'.$lnEnd;