Twig renderer engine

Hi i use Twig for my views, but i have a problem with pageTitle in layouts.

how to achieve this in Twig?




<?php

$this->pageTitle = Yii::app()->name . ' - Contact Us';

?>



i have try like this, but doesn’t work




{{ this.pageTitle = App.name ~ ' - Contact Us' }}

{{ this.pageTitle(App.name ~ ' - Contact Us') }}



please help me

thanks