system/modules/hideaway/templates/ce_hideaway_country_list.html5 line 16

Open in your IDE?
  1. <div class="<?php echo $this->class; ?> category-teaser my-4 py-md-5"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
  2. <?php if ($this->headline): ?>
  3. <<?php echo $this->hl; ?> class="text-center mb-2"><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
  4. <?php endif; ?>
  5. <?php if ($this->subline): ?>
  6. <div class="intro mb-4 mb-md-5"><?php echo $this->subline; ?></div>
  7. <?php endif; ?>
  8. <!-- Grid -->
  9. <div class="row g-2">
  10. <?php foreach($this->entries as $entry): ?>
  11. <div class="col-6 col-lg-4">
  12. <a href="<?= $entry['url'] ?>" class="category-teaser__card">
  13. <img src="<?= ($entry['preview_image_path'] ? $this->getImage($entry['preview_image_path'], 570,375, 'center_center') : 'files/layout/images/no_image.jpg'); ?>" alt="<?= $entry['preview_image_meta'] ?>">
  14. <span class="category-teaser__label"><?= $entry['row']['title'] ?></span>
  15. </a>
  16. </div>
  17. <?php endforeach ?>
  18. </div>
  19. </div>