mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 08:36:09 +01:00
35 lines
No EOL
1.1 KiB
HTML
35 lines
No EOL
1.1 KiB
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:layout name="Default" />
|
|
<f:section name="content">
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<f:if condition="{event.images}">
|
|
<f:then>
|
|
<f:link.action pageUid="{settings.showPID}" action="show" controller="Event" arguments="{event: event}">
|
|
<f:image src="{event.images.originalResource.originalFile.uid}" alt="" width="480c" height="320c" class="img-fluid img-thumbnail"/>
|
|
</f:link.action>
|
|
</f:then>
|
|
<f:else>
|
|
<img src="https://dummyimage.com/480x320/ddd/ccc" alt="Dummy" width="480" height="320" class="img-fluid img-thumbnail"/>
|
|
</f:else>
|
|
</f:if>
|
|
</div>
|
|
<div class="col-6">
|
|
<h2>{event.title}</h2>
|
|
<h3>{event.teaser}</h3>
|
|
<f:format.html>{event.details}</f:format.html>
|
|
<p>{event.price_info}</p>
|
|
|
|
<div class="row">
|
|
<div class="col-4">
|
|
<p>Veranstaltungsort:<br>
|
|
{event.street}<br>
|
|
{event.zip} {event.city}<br>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</f:section>
|
|
</html> |