templates/buetow_2019/rsce_image_cover_news.html5 line 1

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