about.php
542 Bytes
<?php
use artbox\core\components\SeoComponent;
use yii\web\View;
/**
* @var View $this
* @var \artbox\core\models\Page $page
* @var SeoComponent $seo
*/
$seo = \Yii::$app->get('seo');
$this->params[ 'breadcrumbs' ][] = $page->lang->alias->title;
$this->params['h1'] = $page->lang->alias->title;
?>
<div class="container">
<section>
<div class="row">
<div class="col-md-12">
<?=$page->lang->body?>
</div>
</div>
</section>
</div>