Blame view

frontend/views/text/index.php 538 Bytes
90a6ed1a   Administrator   basket
1
  <?php
550eac02   Administrator   second
2
3
  use yii\widgets\Breadcrumbs;
  ?>
90a6ed1a   Administrator   basket
4
  <?php
550eac02   Administrator   second
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  $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;?>
3f2bc3d0   Administrator   first commit
19
  </div>