<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; ?>>
<?php if ($this->headline): ?>
<<?php echo $this->hl; ?> class="text-center mb-2"><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
<?php endif; ?>
<?php if ($this->subline): ?>
<div class="intro mb-4 mb-md-5"><?php echo $this->subline; ?></div>
<?php endif; ?>
<!-- Grid -->
<div class="row g-2">
<?php foreach($this->entries as $entry): ?>
<div class="col-6 col-lg-4">
<a href="<?= $entry['url'] ?>" class="category-teaser__card">
<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'] ?>">
<span class="category-teaser__label"><?= $entry['row']['title'] ?></span>
</a>
</div>
<?php endforeach ?>
</div>
</div>