page.php 399 Bytes
<?php
    /**
     * @var yii\web\View $this
     * @var Page         $model
     */
    use common\models\Page;
    
    $this->title = $model->lang->title;
    $this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="section-box box-title-1 uppercase"><?= $this->title; ?></div>
<div class="section-box box-brand margin_bottom_30">
    <?php
        echo $model->lang->body;
    ?>
</div>