injectp.php 775 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * @var News $post
  4. * @var \yii\web\View $this
  5. */
  6. use app\models\Person;
  7. use yii\helpers\ArrayHelper;
  8. use yii\helpers\Html;
  9. use yii\helpers\Url;
  10. ?>
  11. <div class="inject1" id="<?=$post->id?>">
  12. <div class="illustration">
  13. <div class="picture-cont-16x9">
  14. <a href="<?=Url::base('https').'/person/'.$post->alias?>">
  15. <picture class="w-100">
  16. <img src="<?=$post->getImg(4,'jpg')?>" alt="<?=$post->name?>" class="w-100" loading="lazy">
  17. </picture>
  18. </a>
  19. </div>
  20. </div>
  21. <div class="meta">
  22. <h2 class="title"><a href="<?=Url::base('https').'/person/'.$post->alias?>"><?=$post->name?><p><?=$post->jobtitle?></p></a></h2>
  23. </div>
  24. </div>