templates/fastplug/rsce_fpe_benefits.html5 line 16

Open in your IDE?
  1. <div class="ce_fpe_benefits <?php echo $this->class ?> clearfix">
  2.     <div class="inside">
  3.         
  4.         <?php if ($this->headline): ?>
  5.             <h2 class="fpe_benefit_headline"><?php echo $this->headline?></h2>
  6.         <?php endif; ?>
  7.         <?php foreach ($this->links as $benefit): ?>
  8.             <div class="fpe_benefit">
  9.                 <?php if( $benefit->icon && ( $objFile \FilesModel::findById$benefit->icon ) ) !== null ): ?>
  10.                   <figure class="icon_container" itemscope="" itemtype="http://schema.org/ImageObject">
  11.                     <?php $this->insert('picture_default'\Picture::create$objFile->path )->getTemplateData() ); ?>
  12.                   </figure>
  13.                 <?php endif; ?>
  14.                 <h4><?php echo $benefit->titel?></h4>
  15.                 <p><?php echo $benefit->text?></p>
  16.             </div>
  17.         <?php endforeach; ?>
  18.         
  19.         <div class="fpe_benefit_cta">
  20.         
  21.             <?php if( $this->cta_icon && ( $objFile \FilesModel::findById$this->cta_icon ) ) !== null) : ?>
  22.                 <figure class="icon_container" itemscope="" itemtype="http://schema.org/ImageObject">
  23.                     <?php $this->insert('picture_default'\Picture::create$objFile->path )->getTemplateData() ); ?>
  24.                 </figure>
  25.             <?php endif; ?>
  26.             
  27.             <?php if ($this->buttontext): ?>
  28.                 <a class="button" href="<?php echo $this->buttonlink?>"><?php echo $this->buttontext?></a>
  29.             <?php endif; ?>
  30.         
  31.         </div>
  32.     </div>
  33. </div>