ecf49b1b
Administrator
second
|
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
|
<?php
use yii\helpers\Url;
use yii\helpers\Html;
use yii\widgets\Breadcrumbs;
use yii\widgets\ActiveForm;
$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">
<h1>Корзина</h1>
Ваш заказ принят! Большое Спасибо! Менеджер с Вами свяжется в ближайшее время.
</div>
|