To me, that looks like Smarty. A PHP template parser called Smarty is used. The documentation for Smarty includes information on how to utilize it.
If you are unable to access the source of the CMS: Look at the variables Smarty is utilizing, then write a PHP file that fills them with fictitious data so you can view the templates in your browser.
If my memory serves me correctly, after setting up Smarty, you can use:
$smarty->assign('nameofvar', 'some data');
To set the variables.