system/modules/pct_theme_templates/templates/event/mod_eventreader.html5 line 2

Open in your IDE?
  1. <?php 
  2. $GLOBALS['TL_CSS'][] = \Contao\Config::get('uploadPath').'/cto_layout/css/events/mod_eventreader.css|static';
  3. ?>
  4. <?php $this->extend('block_searchable'); ?>
  5. <?php $this->block('content'); ?>
  6.   <?= $this->event ?>
  7.   <?php if ($this->referer): ?>
  8.     <!-- indexer::stop -->
  9.     <p class="back"><a href="<?= $this->referer ?>" title="<?= $this->back ?>"><?= $this->back ?></a></p>
  10.     <!-- indexer::continue -->
  11.   <?php endif; ?>
  12.   <?php if ($this->allowComments): ?>
  13.     <div class="ce_comments block">
  14.       <<?= $this->hlc ?>><?= $this->hlcText ?></<?= $this->hlc ?>>
  15.       <?= implode(''$this->comments?>
  16.       <?= $this->pagination ?>
  17.       <<?= $this->hlc ?>><?= $this->addComment ?></<?= $this->hlc ?>>
  18.       <?php $this->insert('mod_comment_form'$this->arrData); ?>
  19.     </div>
  20.   <?php endif; ?>
  21. <?php $this->endblock(); ?>