как обновить ваш шаблон и сделать его рабочим
под движок версии 2.0 или более свежую версию
Replace <?=$siteTitle?>
with <?=wCMS::get('config','siteTitle')?>
Replace <?=$title?>
with <?=wCMS::page('title')?>
Replace <?=$description?>
with <?=wCMS::page('description')?>
Replace <?=$keywords?>
with <?=wCMS::page('keywords')?>
Replace <?=wCMS::displayMessages()?>
with <?=wCMS::alerts()?>
Replace <?=wCMS::navigation()?>
with <?=wCMS::menu()?>
Replace <?=$content?>
with <?=wCMS::page('content')?>
Replace <?=$subside?>
with <?=wCMS::block('subside')?>
Save your theme.php and you're done.