Blame view

frontend/views/blog/_article_item.php 2.4 KB
30a01994   Timur Kastemirov   blog
1
2
3
4
5
6
7
8
9
  <?php
      /**
       * User: timur
       * Date: 26.01.18
       * Time: 9:04
       *
       * @var Article $model
       */
      
ec7e1832   Kateryna_Sarnytska   image_id moved to...
10
      use common\models\Article;
30a01994   Timur Kastemirov   blog
11
12
13
14
15
      use yii\helpers\Url;
      
      ?>
  
  <section class="post">
90f2a05c   Eugeny Galkovskiy   h titles
16
      <div class="h2 big-text-2">
30a01994   Timur Kastemirov   blog
17
18
19
20
21
22
23
24
25
26
          <a
              href="<?=Url::toRoute(
                  [
                      'blog/article',
                      'alias' => $model->lang->alias
                  ]
              )?>"
          >
              <?=$model->lang->title?>
          </a>
90f2a05c   Eugeny Galkovskiy   h titles
27
      </div>
30a01994   Timur Kastemirov   blog
28
29
      <div class="row">
          <div class="col-sm-6">
58728e08   Timur Kastemirov   объекты бэк правк...
30
31
32
33
  <!--            <p class="author-category">-->
  <!--                By <a href="blog.html#">Николас</a>-->
  <!--                in <a href="blog.html">NicolasBW</a>-->
  <!--            </p>-->
30a01994   Timur Kastemirov   blog
34
35
36
          </div>
          <div class="col-sm-6">
              <p class="date-comments">
07e00feb   Timur Kastemirov   comments in blog
37
38
39
40
41
42
43
44
45
                  <a href="#">
                      <i class="fa fa-calendar-o"></i>
                      <?=date("j M Y", $model->updated_at)?>
                  </a>
                  <a
                      href="<?=Url::toRoute(
                          [
                              'blog/article',
                              'alias' => $model->lang->alias,
07e00feb   Timur Kastemirov   comments in blog
46
47
48
                          ]
                      )?>"
                  >
ef9209a1   Timur Kastemirov   comments count
49
50
                      <i class="fa fa-comment-o"></i>
                      <?= $model->getCommentsCount() ?>
fa0f7f7f   Eugeny Galkovskiy   translates
51
                      <?= \Yii::t('app', 'blog_comments') ?>
07e00feb   Timur Kastemirov   comments in blog
52
                  </a>
30a01994   Timur Kastemirov   blog
53
54
55
              </p>
          </div>
      </div>
a41b32a4   Kateryna_Sarnytska   corrected default...
56
      <div class="image" <?php if ($model->lang->image) echo 'style="height: 352px"'?>;>
30a01994   Timur Kastemirov   blog
57
58
59
60
61
62
63
64
          <a
              href="<?=Url::toRoute(
                  [
                      'blog/article',
                      'alias' => $model->lang->alias
                  ]
              )?>"
          >
577130f8   Kateryna_Sarnytska   fixed problem if ...
65
66
67
68
69
70
71
72
73
              <?php
              if ($model->lang->image) {
                  echo $model->lang->image->getImg(
                      [
                          'class' => "img-responsive"
                      ]
                  );
              }
              ?>
30a01994   Timur Kastemirov   blog
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
          </a>
      </div>
      <p class="intro">
          <?=$model->lang->body_preview?>
      </p>
      <p class="read-more">
          <a
              href="<?=Url::toRoute(
                  [
                      'blog/article',
                      'alias' => $model->lang->alias
                  ]
              )?>"
              class="btn btn-template-main"
          >
fa0f7f7f   Eugeny Galkovskiy   translates
89
              <?= \Yii::t('app', 'readmore') ?>
30a01994   Timur Kastemirov   blog
90
91
92
          </a>
      </p>
  </section>