Blame view

frontend/views/articles/show.php 976 Bytes
7ba4acc5   Administrator   after marge
1
  <?php
550eac02   Administrator   second
2
3
  use yii\helpers\Url;
  use yii\widgets\Breadcrumbs;
550eac02   Administrator   second
4
  ?>
7ba4acc5   Administrator   after marge
5
  <?php
550eac02   Administrator   second
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  $this->title = $news->meta_title;
  $this->registerMetaTag(['name' => 'description', 'content' => $news->meta_description]);
  $this->registerMetaTag(['name' => 'keywords', 'content' => $news->meta_keywords]);
  ?>
  
              <nav class="bread-crumbs">
              <?= Breadcrumbs::widget([
                  'links' => [
                              ['label'=>'Новости','url'=>['news/index']],
                              $news->title
                              ],
              ]) ?>
                              <div class="both"></div>
              </nav>
  
  <div class="layout">
      
      <div class="content">
  	<h1><?=$news->title?></h1>
bace91ee   Karnovsky A   -
25
          <?= \common\components\artboximage\ArtboxImageHelper::getImage($news->imageUrl, 'product')?>
550eac02   Administrator   second
26
27
28
29
              <?=$news->body?>
              <p class='date'><?=$news->date?></p>
      </div>                                    
                                          
3f2bc3d0   Administrator   first commit
30
  </div>