Blame view

frontend/views/text/index.php 550 Bytes
3f2bc3d0   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?

  use yii\widgets\Breadcrumbs;

  ?>

  <?

  $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;?>

  </div>