<div class="ce_fpe_benefits <?php echo $this->class ?> clearfix">
<div class="inside">
<?php if ($this->headline): ?>
<h2 class="fpe_benefit_headline"><?php echo $this->headline; ?></h2>
<?php endif; ?>
<?php foreach ($this->links as $benefit): ?>
<div class="fpe_benefit">
<?php if( $benefit->icon && ( $objFile = \FilesModel::findById( $benefit->icon ) ) !== null ): ?>
<figure class="icon_container" itemscope="" itemtype="http://schema.org/ImageObject">
<?php $this->insert('picture_default', \Picture::create( $objFile->path )->getTemplateData() ); ?>
</figure>
<?php endif; ?>
<h4><?php echo $benefit->titel; ?></h4>
<p><?php echo $benefit->text; ?></p>
</div>
<?php endforeach; ?>
<div class="fpe_benefit_cta">
<?php if( $this->cta_icon && ( $objFile = \FilesModel::findById( $this->cta_icon ) ) !== null) : ?>
<figure class="icon_container" itemscope="" itemtype="http://schema.org/ImageObject">
<?php $this->insert('picture_default', \Picture::create( $objFile->path )->getTemplateData() ); ?>
</figure>
<?php endif; ?>
<?php if ($this->buttontext): ?>
<a class="button" href="<?php echo $this->buttonlink; ?>"><?php echo $this->buttontext; ?></a>
<?php endif; ?>
</div>
</div>
</div>