templates/ce_cthemes_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="<?= $this->page ?>" class="inside"><?php else: ?><div class="inside"><?php endif; ?>
  3.     <?php $this->block('content'); ?>
  4.     <?php if ($this->headline): ?>
  5.         <<?= $this->hl ?>>
  6.             <?= $this->headline ?>
  7.         </<?= $this->hl ?>>
  8.     <?php endif; ?>
  9.     <?php if ($this->addImage): ?>
  10.         <?php $this->insert('image'$this->arrData); ?>
  11.     <?php endif; ?>
  12.     <?= $this->text ?>
  13.     <?php $this->endblock(); ?>
  14.     <?php if($this->page != ""): ?></a><?php else: ?></div><?php endif; ?>
  15. </div>