Blame view

frontend/views/search/_vacancy_list_view.php 863 Bytes
eb7e82fb   Administrator   29.02.16
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
  use frontend\helpers\TextHelper;
  use yii\bootstrap\Html;
  use yii\helpers\Url;
  
  ?>
  
  <div class="performer-vacant-reclam-bl">
      <?= Html::a($model->name, Url::toRoute( ['company/vacancy-view', 'company_id' => $model->user_id,'link' => $model->link]), ['class' => 'performer-vacant-reclam-bl-title']) ?>
      <div class="performer-vacant-reclam-bl-title-two"> <?= $model->city ?>  <?=$model->date_add ?>  <?=$model->salary ?> <?=$model->salaryCurrency->label ?> </div>
      <div class="performer-vacant-reclam-bl-content">
          <span><?= TextHelper::truncateHtmlText($model->description, 200, '...') ?></span>
           <?= Html::a('<img src="/images/performar_vacancy/arrow-post.png" alt=""/>', ['vacancy-view', 'company_id' => $model->user_id,'vacancy_id' => $model->vacancy_id], ['class' => 'performer-vacant-reclam-bl-content-read']) ?>
eb7e82fb   Administrator   29.02.16
14
15
      </div>
  </div>