<?php include('include_helper_content.html5'); ?>
<div class="col-12 col-md-6 col-lg-4">
<div class="c-cardSimple <?= $custom->classModified ?>">
<?php if ($this->addImage): ?>
<div class="c-cardSimple__media">
<?php $this->insert('image', $this->arrData); ?>
</div>
<?php endif; ?>
<div class="c-cardSimple__body">
<div class="c-cardSimple__text">
<?php if ($this->hasMetaFields): ?>
<div class="c-cardSimple__meta">
<strong><?= $this->author ?> ยท </strong><time datetime="<?= $this->datetime ?>" itemprop="datePublished"><?= $this->parseDate('d. F Y', $this->time) ?></time>
</div>
<?php endif; ?>
<h4><?= $this->linkHeadline ?></h4>
<?php if ($this->hasText || $this->hasTeaser): ?>
<p><a class="o-text-link" href="<?= $this->link ?>"><?= $GLOBALS['TL_LANG']['MSC']['more'] ?></a></p>
<?php endif; ?>
</div>
</div>
</div>
</div>