Blame view

frontend/views/layouts/site_content.php 725 Bytes
8df80521   Alexander Karnovsky   not fixed commite
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  /* @var $content string */
  use yii\widgets\Breadcrumbs;
  
  $this->beginContent('@app/views/layouts/main.php');
  ?>
  <div class="main_cont_wrap"> <!-- Обертка общая с общей шириной -->
      <div class="bradcrumps_top">
          <?= Breadcrumbs::widget([
              'itemTemplate' => "<li>{link}<i class=\"fa fa-angle-right\"></i></li>\n",
              'activeItemTemplate' =>  "<li><a href=\"#\">{link}</a><i class=\"fa fa-angle-right\"></i></li>\n",
              'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
          ]);
          ?>
      </div>
      <?= $content ?>
  </div>
  
  <?= $this->render('why_us') ?>
  <?= $this->render('products') ?>
  <?php $this->endContent() ?>