events/Resources/Private/Templates/Date/Show.html

75 lines
3.2 KiB
HTML
Raw Normal View History

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
2019-11-07 14:16:28 +01:00
<f:layout name="Default" />
<f:section name="content">
<div class="row">
<div class="col-12 mb-3 mb-md-0 col-md-6">
<f:if condition="{date.event.images.0}">
2019-11-07 14:16:28 +01:00
<f:then>
<f:image image="{date.event.images.0}" alt="" width="480c" height="320c" class="img-fluid img-thumbnail"/>
2019-11-07 14:16:28 +01:00
</f:then>
<f:else>
<img src="{settings.defaultImagePath}" alt="Dummy" width="480c" height="320c" class="img-fluid img-thumbnail"/>
</f:else>
</f:if>
</div>
<div class="col-12 col-md-6">
2021-09-07 19:23:57 +02:00
<f:if condition="{date.canceled} == 'canceled'">
<h4 class="bg-secondary text-white p-2">
<f:translate key="LLL:EXT:events/Resources/Private/Language/locallang.xlf:tx_events.date.canceled" />
</h4>
</f:if>
2019-11-07 14:16:28 +01:00
<h4>
<f:format.date format="%a">{date.start}</f:format.date>
<f:format.date format="d.m.">{date.start}</f:format.date>
<f:format.date format="H.i">{date.start}</f:format.date> Uhr
2019-11-07 14:16:28 +01:00
</h4>
<h2>{date.event.title}</h2>
<h3>{date.event.teaser}</h3>
<f:format.html>{date.event.details}</f:format.html>
2020-03-16 13:52:58 +01:00
</div>
</div>
<div class="row">
<div class="col mt-3 mb-3">
</div>
</div>
<div class="row">
<div class="col-12 col-md-4">
2020-03-16 13:52:58 +01:00
<p><b>Preis:</b><br>
<f:if condition="{date.event.priceInfo}">
<f:then>
2020-03-16 14:06:03 +01:00
<f:format.nl2br>{date.event.priceInfo}</f:format.nl2br>
2020-03-16 13:52:58 +01:00
</f:then>
<f:else>
Keine Information
</f:else>
</f:if>
</p>
2020-03-16 13:52:58 +01:00
<f:if condition="{date.event.web}">
<p><b>Weitere Informationen:</b><br>
<a href="{date.event.web}" target="_blank">Website</a>
</p>
</f:if>
</div>
<div class="col-12 col-md-4">
2020-03-16 13:52:58 +01:00
<p><b>Veranstaltungsort:</b><br>
2022-08-02 15:56:18 +02:00
{date.event.location.name}<br>
{date.event.location.street}<br>
{date.event.location.zip} {date.event.location.city}<br>
{date.event.location.phone}<br>
2020-03-16 13:52:58 +01:00
</p>
</div>
<div class="col-12 col-md-4">
2020-03-16 13:52:58 +01:00
<p><b>Veranstalter:</b><br>
{date.event.organizer.name}<br>
{date.event.organizer.street}<br>
{date.event.organizer.zip} {date.event.organizer.city}<br>
{date.event.organizer.phone}<br>
<a href="{date.event.organizer.web}" target="_blank">Website</a>
</p>
2019-11-07 14:16:28 +01:00
</div>
</div>
</f:section>
2020-03-16 13:52:58 +01:00
</html>