
<?php /*if ($this->header): ?>
  <div class="header<?= $this->classHeader ?>">
    <?php if ($this->firstDay): ?><span class="day"><?= $this->firstDay ?>, </span><?php endif; ?><span class="date"><?= $this->firstDate ?></span>
  </div>
<?php endif; */ ?>

<div class="event layout_teaser<?= $this->classUpcoming ?> col s12 m6">
  <div class="inner">	
	
	  <?php if ($this->addImage): ?>
	    <figure class="image_container<?= $this->floatClass ?>"<?php if ($this->margin): ?> style="<?= $this->margin ?>"<?php endif; ?>>
	
	      <?php if ($this->href): ?>
	        <a href="<?= $this->href ?>"<?= $this->attributes ?> title="<?= $this->alt ?>">
	      <?php endif; ?>
	
	      <?php $this->insert('picture_default', $this->picture); ?>
	
	      <?php if ($this->href): ?>
	        </a>
	      <?php endif; ?>
	
	      <?php if ($this->caption): ?>
	        <figcaption class="caption"><?= $this->caption ?></figcaption>
	      <?php endif; ?>
	
	    </figure>
	  <?php endif; ?>
	
	  <div class="text">
		  <?php if ($this->hasDetails): ?>
		    <h2><a href="<?= $this->href ?>" title="<?= $this->title ?> (<?php if ($this->day) echo $this->day . ', '; ?><?= $this->date ?><?php if ($this->time) echo ', ' . $this->time; ?>)"<?= $this->target ?>><?= $this->link ?></a></h2>
		  <?php else: ?>
		    <h2><?= $this->title ?></h2>
		  <?php endif; ?>

		  <p class="time"><time datetime="<?= $this->datetime ?>"><?= str_replace("–"," – ",$this->date) ?><?php if ($this->time): ?>, <?= $this->time ?><?php endif; ?></time></p>
		
		  <div class="teaser">
		    <?= $this->teaser ?>
		  </div>
		
		  <?php if ($this->hasDetails): ?>
		  	<a class="more" href="<?= $this->href ?>">weiterlesen...</a>
		  <?php endif; ?>
	  </div>

  </div>
</div>
