Zitat von
Contao-Academy
Kannst du das komplette problematische Template bereitstellen?
Kann ich, aber das ist der Contao-Standard. Ich habe daran nichts geändert:
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>
Zitat von
Contao-Academy
Du schreibst, der Termin hat als Details den Ort.
Meinst du damit die Ortsangabe bei der Terminkonfiguration oder als Inhaltselement mit Text?
Damit meine ich die Ortsangabe im Event selbst:
ort.jpg
Zitat von
Contao-Academy
Sind innerhalb des Termins irgendwelche Inhaltselemente enthalten?
Nur die Angaben in der Event-Maske. Kein Schnickschnack.