4253cbec
root
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
use yii\widgets\Breadcrumbs;
?>
<?php
$this->title = $text->meta_title;
$this->registerMetaTag(['name' => 'description', 'content' => $text->meta_description]);
$this->registerMetaTag(['name' => 'keywords', 'content' => $text->meta_keywords]);
?>
<nav class="bread-crumbs">
<?= Breadcrumbs::widget([
'links' => [$text->title],
]) ?>
<div class="both"></div>
</nav>
<h1><?=$text->title;?></h1>
<div class="content">
<?=$text->body;?>
</div>
|