Commit 3f44ed5aa9ead2e03c783eec210ed4fb43a3fbf4

Authored by Administrator
1 parent d041f799

14.09.16

Showing 1 changed file with 7 additions and 3 deletions   Show diff stats
frontend/views/text/index.php
... ... @@ -6,10 +6,14 @@ $this->title = $text->meta_title;
6 6 $this->registerMetaTag(['name' => 'description', 'content' => $text->meta_description]);
7 7 $this->registerMetaTag(['name' => 'keywords', 'content' => $text->meta_keywords]);
8 8 ?>
9   -<div class="container">
  9 + <nav class="bread-crumbs">
  10 + <?= Breadcrumbs::widget([
  11 + 'links' => [$text->title],
  12 + ]) ?>
  13 + <div class="both"></div>
  14 + </nav>
10 15  
11   - <div class="content">
12 16 <h1><?=$text->title;?></h1>
  17 +<div class="content">
13 18 <?=$text->body;?>
14   - </div>
15 19 </div>
16 20 \ No newline at end of file
... ...