templates/rsce_content-bild-combo.html5 line 6

Open in your IDE?
  1.     <?php if ($this->headline): ?>
  2.     <<?php echo $this->hl?>><?php echo $this->headline?></<?php echo $this->hl?>>
  3.   <?php endif; ?>
  4. <div class="<?php echo $this->order ?> <?php echo $this->bgColor ?> <?php echo $this->textColor ?> <?php echo $this->class ?> block"<?php echo $this->cssID ?>>
  5.     <div class="element-image">
  6.         <?php if ($image $this->getImageObject($this->image$this->size)): ?>
  7.                 <figure class="image_container">
  8.                         <?php $this->insert('picture_default'$image->picture?>
  9.                 </figure>
  10.             <?php endif ?>
  11.     </div>
  12.     <div class="element-content <?php echo $this->order ?>">
  13.         <div class="inside">
  14.         <div class="heading"><?php echo $this->titel ?></div>
  15.         <?php if ($this->subline):?>
  16.         <div class="subline"><?php echo $this->subline ?></div>
  17.         <?php endif ?>
  18.         <?php if ($this->content_text):?>
  19.         <div class="content"><?php echo $this->content_text ?></div>
  20.         <?php endif ?>
  21.         <?php if ($this->link):?>
  22.         <a href="{{env::path}}{{link_url::<?php echo $this->link ?>}}" class="btn btn-primary"><i class="fas fa-chevron-right"></i> <?php echo $this->linktext ?></a>
  23.         <?php endif ?>
  24.     </div>
  25.     </div>
  26. </div>