Hallo MacKP,
danke für die Rückmeldung, das mit dem "with:auto" hat schon einmal geklappt.
Was ich nicht verstehe ist, dass die Eventliste eigentlich eine Tabelle wäre in meinen Templates habe ich das nicht erkannt. Aber die Eventliste als Tabelle darzustellen wäre vielleicht eine gute Idee und ich könnte damit eventuell weitere Probleme erschlagen. Das würde in dem Fall bedeuten, dass ich hier eine Div-Tabelle aufbauen müsste.
Event-Template - event_list.html5
Code:
<?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_list<?= $this->classList ?>" itemscope itemtype="http://schema.org/Event">
<h2 itemprop="name"><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 ?> itemprop="url"><?= $this->link ?></a></h2>
<p class="time"><time datetime="<?= $this->datetime ?>" itemprop="startDate"><?= $this->date ?><?php if ($this->time): ?>, <?= $this->time ?><?php endif; ?></time></p>
<?php if ($this->hasDetails): ?>
<?= $this->details ?>
<?php else: ?>
<div class="ce_text block" itemprop="description">
<?= $this->teaser ?>
</div>
<?php endif; ?>
</div>
Modul-Template - mod_eventlist.html5
Code:
<?php $this->extend('block_unsearchable'); ?>
<?php $this->block('content'); ?>
<?= $this->events ?>
<?= $this->pagination ?>
<?php $this->endblock(); ?>
Gruß
Thomas