templates/layout/event_full.html5 line 17

Open in your IDE?
  1. <div class="event layout_full block<?= $this->class ?>" itemscope itemtype="http://schema.org/Event">
  2.   <h1 class="title"><?= $this->title ?></h1>
  3.   <div class="info">
  4.       <time datetime="<?= $this->datetime ?>" itemprop="startDate"><?= $this->date ?><?php if ($this->time): ?><?= $this->time ?><?php endif; ?></time>
  5.       <?php if ($this->location): ?>
  6.         <p class="location"><?= $this->locationLabel ?><?= $this->location ?></p>
  7.     <?php endif; ?>
  8.   </div>
  9.   <div class="clear"></div>
  10.   <?php if ($this->recurring): ?>
  11.     <p class="recurring"><?= $this->recurring ?><?php if ($this->until) echo ' ' $this->until?>.</p>
  12.   <?php endif; ?>
  13.   <?php if ($this->hasDetails): ?>
  14.     <?= $this->details ?>
  15.   <?php else: ?>
  16.     <div class="ce_text block" itemprop="description">
  17.       <?= $this->teaser ?>
  18.     </div>
  19.   <?php endif; ?>
  20.   <?php if ($this->enclosure): ?>
  21.     <div class="enclosure">
  22.       <?php foreach ($this->enclosure as $enclosure): ?>
  23.         <p><?= Image::getHtml($enclosure['icon'], '''class="mime_icon"'?> <a href="<?= $enclosure['href'?>" title="<?= $enclosure['title'?>" itemprop="url"><?= $enclosure['link'?> <span class="size">(<?= $enclosure['filesize'?>)</span></a></p>
  24.       <?php endforeach; ?>
  25.     </div>
  26.   <?php endif; ?>
  27. </div>