
<div class="col-xl-4 col-lg-6 col-md-8 col-sm-12 mb-4 bg-white border layout_latest arc_<?= $this->archive->id ?> block<?= $this->class ?>" itemscope itemtype="http://schema.org/Article">
  <?php if ($this->hasMetaFields): ?>
    <p class="info small bg-gryXL p-2"><time datetime="<?= $this->datetime ?>" itemprop="datePublished"><?= $this->date ?></time> <?= $this->author ?> <?= $this->commentCount ?></p>
  <?php endif; ?>

  <?php if ($this->addImage): ?>
    <div class="px-2 py-0">
    <?php $this->insert('image', $this->arrData); ?>
    </div>
  <?php endif; ?>

  <?php if ($this->hasText): ?>
    <div class="p-0">
    <h2 itemprop="name" class="display-4 px-3 py-2 link-colD"><?= $this->linkHeadline ?></h2>
    </div>
  <?php else: ?>
    <div class="p-0">
    <h2 itemprop="name" class="display-4 px-3 py-2 text-colD"><?= $this->newsHeadline ?></h2>
    </div>
  <?php endif; ?>

  <div class="ce_text block" itemprop="description">
    <div class="p-3">
    <?= $this->teaser ?>
    </div>
  </div>

  <?php if ($this->hasText): ?>
    <p class="more text-right btn btn-light"><?= $this->more ?></p>
  <?php endif; ?>

</div>
