posts_item.php 457 B

123456789101112
  1. <?php
  2. use yii\helpers\Html;
  3. ?>
  4. <h1><?=$model->h1_ru && $lang == 'ru'? $model->h1_ru : $model->h1?></h1>
  5. <?php if($model->getLogo()): ?>
  6. <img alt="UUB" width="100%" src="<?= $model->getLogo() ?>">
  7. <?php endif; ?>
  8. <p><?=$model->short_text_ru && $lang == 'ru' ? $model->short_text_ru : $model->short_text?></p>
  9. <div class="show-more">
  10. <?= Html::a(Yii::t('app','Detail'),['view','slug' => $model->slug,'lang' => $lang ],['class' =>'button'])?>
  11. </div>