Blame view

frontend/views/site/_search_item.php 715 Bytes
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  use yii\helpers\Html;
  ?>
  
  <div class="block-school-spots-img-text">
      <div class="block-school-spots-img-wr">
          <div class="block-school-spots-img">
              <?=  Html::a(Html::img($model['image']),['schools/view', 'translit' =>$model['translit'] ])  ?>
          </div>
      </div>
      <div class="block-school-spots-text-wr">
          <div class="block-school-spots-text-title">
              <?=  Html::a($model['name'],['schools/view', 'translit' =>$model['translit']])  ?>
          </div>
          <div class="block-school-spots-text-cont">
              <p>
                  <?= (new \common\models\Spots())->shortenString($model['description'], 300) ?>
              </p>
          </div>
      </div>
  </div>