Blame view

frontend/views/text/index.php 372 Bytes
193ead1b   Administrator   big commti
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  use yii\widgets\Breadcrumbs;
  ?>
  <?php
  $this->title = $text->meta_title;
  $this->registerMetaTag(['name' => 'description', 'content' => $text->meta_description]);
  $this->registerMetaTag(['name' => 'keywords', 'content' => $text->meta_keywords]);
  ?>
  
  <div class="container">
  
      <div class="content">
  <h1><?=$text->title;?></h1>
  <?=$text->body;?>
          </div>
  </div>