templates/relaunch2017/ce_text_notoken.html5 line 1

Open in your IDE?
  1. <?php if(!$_GET['token']): ?>
  2.     <?php $this->extend('block_searchable'); ?>
  3.     <?php $this->block('content'); ?>
  4.     <?php if (!$this->addBefore): ?>
  5.         <?= $this->text ?>
  6.     <?php endif; ?>
  7.     <?php if ($this->addImage): ?>
  8.         <figure class="image_container<?= $this->floatClass ?>"<?php if ($this->margin): ?> style="<?= $this->margin ?>"<?php endif; ?>>
  9.             <?php if ($this->href): ?>
  10.             <a href="<?= $this->href ?>"<?php if ($this->linkTitle): ?> title="<?= $this->linkTitle ?>"<?php endif; ?><?= $this->attributes ?>>
  11.                 <?php endif; ?>
  12.                 <?php $this->insert('picture_default'$this->picture); ?>
  13.                 <?php if ($this->href): ?>
  14.             </a>
  15.         <?php endif; ?>
  16.             <?php if ($this->caption): ?>
  17.                 <figcaption class="caption"><?= $this->caption ?></figcaption>
  18.             <?php endif; ?>
  19.         </figure>
  20.     <?php endif; ?>
  21.     <?php if ($this->addBefore): ?>
  22.         <?= $this->text ?>
  23.     <?php endif; ?>
  24.     <?php $this->endblock(); ?>
  25. <?php endif; ?>