page.php 196 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php use common\models\Page; use yii\web\View; /** * @var Page $model * @var View $this * */ $this->title = $model->title; $this->params['breadcrumbs'][] = $this->title; echo $model->body;