Пример добавления подстроки ' | a-savin.ru' на все страницы в конец title.

$eventManager = \Bitrix\Main\EventManager::getInstance();
$eventManager->addEventHandler('main', 'OnEpilog', 'AddSuffixInTitle');
function AddSuffixInTitle()
{
global $APPLICATION;
$request = \Bitrix\Main\Context::getCurrent()->getRequest();
if (!$request->isAjaxRequest()) {
$title = $APPLICATION->GetTitle();
$APPLICATION->SetPageProperty('title', $title . ' | a-savin.ru');
}
}
Теперь на всех страницах в titile добавляется ' | a-savin.ru'