4253cbec
root
first commit
|
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
|
<?php
use yii\helpers\Url;
use yii\widgets\Breadcrumbs;
use app\models\News;
use yii\widgets\LinkPager;
use app\components\Text
?>
<?php
$this->title = 'Обратный звонок';
$this->registerMetaTag(['name' => 'description', 'content' => 'Обратный звонок']);
$this->registerMetaTag(['name' => 'keywords', 'content' => 'Обратный звонок']);
?>
<nav class="bread-crumbs">
<?= Breadcrumbs::widget([
'links' => [
'Обратный звонок'
],
]) ?>
<div class="both"></div>
</nav>
<div class="layout">
<div class="content">
<h1>Обратный звонок</h1>
Мы получили от Вас сообщение! Мы свяжемся с Вами в ближайшее время.
</div>
</div>
|