<?php
if($this->width > $this->height) {
    #Querformatbilder
    $ogimage = $this->getImage($this->urlEncode($this->singleSRC), 1200, 630 , 'crop');
}else{
    #Hochformatbilder
    $ogimage = $this->getImage($this->urlEncode($this->singleSRC), 630, 0 , 'proportional');
}
if($ogimage != "") {
    $GLOBALS['og:image'] = $this->Environment->base . $ogimage;
}
?>

<div class="event layout_full block<?= $this->class ?>" itemscope itemtype="http://schema.org/Event">

    <h1 itemprop="name"><?= $this->title ?></h1>
    <p class="info"><time datetime="<?= $this->datetime ?>" itemprop="startDate"><?= str_replace("–"," – ",$this->date) ?><?php if ($this->time): ?>, <?= $this->time ?><?php endif; ?></time></p>

    <?php if ($this->recurring): ?>
        <p class="recurring"><?= $this->recurring ?><?php if ($this->until) echo ' ' . $this->until; ?>.</p>
    <?php endif; ?>

    <?php if ($this->hasDetails): ?>
        <?= $this->details ?>
    <?php else: ?>
        <div class="ce_text block">
            <?php if (!$this->addBefore): ?>
                <?= $this->teaser ?>
            <?php endif; ?>

            <?php if ($this->addImage): ?>
                <?php $this->insert('image', $this->arrData); ?>
            <?php endif; ?>

            <?php if ($this->addBefore): ?>
                <?= $this->teaser ?>
            <?php endif; ?>
        </div>
    <?php endif; ?>

    <?php if ($this->location): ?>
        <p class="location"><?= $this->locationLabel ?>: <?= $this->location ?></p>
    <?php endif; ?>

    <?php if ($this->enclosure): ?>
        <ul class="enclosure">
            <?php foreach ($this->enclosure as $enclosure): ?>
                <li class="download-element ext-<?= $enclosure['extension'] ?>">
                    <a href="<?= $enclosure['href'] ?>" title="<?= $enclosure['title'] ?>"><?= $enclosure['link'] ?> <span class="size">(<?= $enclosure['filesize'] ?>)</span></a>
                </li>
            <?php endforeach; ?>
        </ul>
    <?php endif; ?>

</div>
