view.php
792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
use artbox\core\components\SeoComponent;
use artbox\core\models\Page;
use yii\helpers\Html;
use yii\web\View;
/**
* @var View $this
* @var Page $model
* @var Page[] $pages
* @var SeoComponent $seo
*/
$seo = \Yii::$app->get('seo');
$this->params[ 'breadcrumbs' ][] = $seo->title;
?>
<div id="content">
<div class="container">
<section>
<div class="row">
<div class="col-md-12 clearfix">
<div id="text-page">
<?= $model->lang->body; ?>
</div>
</div>
<!-- /.col-md-12 -->
</div>
<!-- /.row -->
</section>
</div>
<!-- /.container -->
</div>
<!-- /#content -->