main.php 2.38 KB
<?php
    use yii\widgets\Breadcrumbs;
    use yii\widgets\Menu;
?>
<?php $this->beginContent('@app/views/layouts/layout.php') ?>
<div class="wrap">


    <div class="container">
        <div class="left_block">
            <?php
                echo Menu::widget([
                    'options' => ['class' => 'nav nav-pills nav-stacked'],
                    'items' => [
                        ['label' => 'Галерея', 'url' => ['gallery/index']],
//                        ['label' => 'Цвета', 'url' => ['colors/index']],
//                        ['label' => 'Страна', 'url' => ['country/index']],
//                        ['label' => 'Категории', 'url' => ['category/index' ]],
//                        ['label' => 'Камень', 'url' => ['stone/index']],
//                        ['label' => 'Изделия', 'url' => ['goods/index']],
//                        ['label' => 'Услуги', 'url' => ['standard-services/index']],
                        ['label' => 'Акции', 'url' => ['events/index'],],
                        ['label' => 'Статические страницы', 'url' => ['page/index']],
//                        //['label' => 'Заказы', 'url' => ['order/index']],
//                        ['label' => 'Консультация', 'url' => ['quick-order/index']],
//                        //['label' => 'Обратный звонок', 'url' => ['callback/index']],
//                        ['label' => 'Запрос "Подробнее"', 'url' => ['details-request/index']],
//                        ['label' => 'Подписки', 'url' => ['subscribe/index']],
                        ['label' => 'Блог', 'url' => ['articles/index', 'type'=>'blog']],
                        ['label' => 'Новости', 'url' => ['articles/index', 'type'=>'news']],
                        ['label' => 'Трипы', 'url' => ['articles/index', 'type'=>'trips']],
                        ['label' => 'Школы', 'url' => ['schools/index']],
                        ['label' => 'Споты', 'url' => ['spots/index']],
                    ],
                ]);
            ?>
        </div>
        <div class="right_block">
            <?= Breadcrumbs::widget([
                'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
            ]) ?>
            <?= $content ?>
        </div>
    </div>
</div>
<?php $this->endContent() ?>