templates/buetow_2019/rsce_image_cover.html5 line 13

Open in your IDE?
  1. <?php
  2.     // Prepare Values
  3.     $this->color 'color:#' $this->headline_color[0] . ';';
  4.     if($this->headline_color[1] && $this->headline_color[1] != '') {
  5.         $this->opacity ' opacity:' $this->headline_color[1]/100 ';';
  6.     }
  7. ?>
  8. <section class="<?= $this->class?>">
  9.     <div class="cover_wrapper">
  10.         <div class="ce_headline <?= $this->headline_position?>">
  11.             <<?= $this->hl?> style="<?= $this->color?><?= $this->opacity?>"><?= $this->headline?></<?= $this->hl?>>
  12.         </div>
  13.         <?php if ($image $this->getImageObject($this->singleSRC$this->size)): ?>
  14.         <div class="ce_image last block <?php if($this->cover){ echo " cover"; } ?>">
  15.             <figure class="image_container">
  16.             <?php $this->insert('picture_default'$image->picture?>
  17.           </figure>
  18.         </div>
  19.         <?php endif ?>
  20.     </div>
  21. </section>