<div class="layout_latest arc_<?= $this->archive->id ?> block<?= $this->class ?>" itemscope itemtype="http://schema.org/Article">
  <div class="toggler"><h2 itemprop="name">
    <?= $this->headline ?></h2>
  </div>
  <div class="ce_text block" itemprop="description">
    <div class="accordion">
	  <?php if ($this->hasMetaFields): ?>
        <p class="info"><time datetime="<?= $this->datetime ?>" itemprop="datePublished"><?= $this->date ?></time> <?= $this->author ?> <?= $this->commentCount ?></p>
	  <?php endif; ?>
	  <?php if ($this->addImage): ?> <?php $this->insert('image', $this->arrData); ?> <?php endif; ?>
	  <div class="ce_text block" itemprop="description">
		<?php if ($this->teaser): ?>
		  <?php echo \StringUtil::substr($this->teaser,80); ?>
		<?php else: ?>
		  <?php echo \StringUtil::substr($this->text,80); ?>
		<?php endif; ?>		
	  </div>
	  <?php if ($this->hasText || $this->hasTeaser): ?>
	    <p class="more"><?= $this->more ?></p>
	  <?php endif; ?>
    </div>
  </div>
</div>