<div class="c-newsFull<?= $this->class ?>" itemscope itemtype="http://schema.org/Article">
<div class="c-newsFull__header">
<div class="u-width-small">
<h1 itemprop="name"><?= $this->newsHeadline ?></h1>
<?php if ($this->hasMetaFields): ?>
<div class="c-newsFull__meta">
<strong><?= $this->author ?> ยท </strong><time datetime="<?= $this->datetime ?>" itemprop="datePublished"><?= $this->parseDate('d. F Y', $this->time) ?></time>
</div>
<?php endif; ?>
</div>
<?php if ($this->addImage): ?>
<div class="c-newsFull__media">
<div class="u-unroot">
<?php $this->insert('image', $this->arrData); ?>
<div class="c-newsFull__social">
<div class="u-width-small">
<a target="_blank" href="https://www.facebook.com">{{fab::facebook-square}}</a>
<a target="_blank" href="https://www.instagram.com">{{fab::instagram}}</a>
<a target="_blank" href="https://www.twitter.com">{{fab::twitter-square}}</a>
<a target="_blank" href="https://www.xing.de">{{fab::xing-square}}</a>
<a target="_blank" href="https://www.linkedin.com">{{fab::linkedin}}</a>
</div>
</div>
</div>
</div>
<?php endif; ?>
<div class="u-width-small">
<?php /* if ($this->hasSubHeadline): ?><h2 itemprop="headline"><?= $this->subHeadline ?></h2><?php endif; */ ?>
<div class="c-newsFull__description" itemprop="description"><?= $this->teaser ?></div>
</div>
</div>
<?php if ($this->hasText): ?>
<div class="c-newsFull__body">
<div class="u-width-small">
<div class="row">
<?= $this->text ?>
</div>
</div>
</div>
<?php endif; ?>
</div>