templates/ce_mate_teaserbox.html5 line 12

Open in your IDE?
  1. <div class="<?= $this->class ?> block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>>
  2.     <?php if($this->page != ""): ?><a href="{{link_url::<?= $this->page ?>}}" class="inside"><?php else: ?><div class="inside"><?php endif; ?>
  3.     <?php $this->block('content'); ?>
  4.     
  5.         <?php if ($this->headline): ?>
  6.           <<?= $this->hl ?>>
  7.                 <?= $this->headline ?>
  8.           </<?= $this->hl ?>>
  9.         <?php endif; ?>
  10.         <?php if ($this->addImage): ?>
  11.             <?php $this->insert('image'$this->arrData); ?>
  12.         <?php endif; ?>
  13.         <?php if($this->subheadline): ?><div class="subheadline"><?= $this->subheadline ?></div><?php endif; ?>
  14.         <?= $this->text ?>
  15.     <?php $this->endblock(); ?>
  16.     <?php if($this->page != ""): ?></a><?php else: ?></div><?php endif; ?>
  17. </div>