Blame view

frontend/views/blog/view.php 500 Bytes
c237629a   Anastasia   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
      
      use common\models\blog\Article;
      use common\models\blog\Tag;
      use frontend\widgets\BlogSearch;
      use artbox\core\helpers\Url;
      use yii\web\View;
      
      /**
       * @var View    $this
       * @var Article $model
       * @var Tag[]   $tags
       */
5a63b975   Anastasia   - blog view
14
15
16
17
18
19
20
  //
  //    $this->params[ 'breadcrumbs' ][] = [
  //        'label' => \Yii::t('app', 'Блог'),
  //        'url'   => [ 'blog/index' ],
  //    ];
  //
  //    $this->params[ 'breadcrumbs' ][] = $model->title;
c237629a   Anastasia   first commit
21
22
23
  
  ?>
  
5a63b975   Anastasia   - blog view
24
  
c237629a   Anastasia   first commit
25
26
  <!-- /#content -->