<div class="layout_newsreader block<?= $this->class ?>">
<div class="col-sm-12">
<h1><?= $this->newsHeadline ?></h1>
<?php if ($this->addImage): ?>
<div class="image_container">
<img class="img-responsive" src="<?= $this->picture['img']['src']; ?>">
</div>
<?php endif; ?>
<?php if ($this->hasMetaFields): ?>
<p class="info"><time datetime="<?= $this->datetime ?>"><?= $this->date ?></time> <?= $this->commentCount ?></p>
<?php endif; ?>
<?php if ($this->hasSubHeadline): ?>
<h2><?= $this->subHeadline ?></h2>
<?php endif; ?>
<?php if ($this->hasText): ?>
<?= $this->text ?>
<?php else: ?>
<div class="ce_text block">
<?= $this->teaser ?>
</div>
<?php endif; ?>
<?php if ($this->enclosure): ?>
<div class="enclosure">
<?php foreach ($this->enclosure as $enclosure): ?>
<p><?= Image::getHtml($enclosure['icon'], '', 'class="mime_icon"') ?> <a href="<?= $enclosure['href'] ?>" title="<?= $enclosure['title'] ?>"><?= $enclosure['link'] ?> <span class="size">(<?= $enclosure['filesize'] ?>)</span></a></p>
<?php endforeach; ?>
</div>
<?php endif; ?>
</div>
</div>