2021-02-03 17:20:01 +01:00
|
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
|
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
<f:for each="{entities}" as="entity">
|
2021-02-16 12:02:10 +01:00
|
|
|
<h5>{entity.title} ({entity.town.title})</h5>
|
|
|
|
<p>{entity.description}</p>
|
2021-02-03 17:20:01 +01:00
|
|
|
|
2021-02-16 12:02:10 +01:00
|
|
|
<f:for each="{entity.openingHours}" as="openingHour">
|
|
|
|
<p>
|
|
|
|
<f:for each="{openingHour.daysOfWeekWithMondayFirstWeekDay}" as="weekday">
|
|
|
|
{weekday}: {openingHour.opens} - {openingHour.closes}<br>
|
2021-02-03 17:20:01 +01:00
|
|
|
</f:for>
|
2021-02-16 12:02:10 +01:00
|
|
|
{openingHour.from -> f:format.date(format: 'd.m.Y')} -
|
|
|
|
{openingHour.through -> f:format.date(format: 'd.m.Y')}
|
|
|
|
</p>
|
|
|
|
</f:for>
|
|
|
|
|
|
|
|
<f:if condition="{entity.address}">
|
|
|
|
<p>
|
|
|
|
{entity.address.street}<br>
|
|
|
|
{entity.address.zip} {entity.address.city}<br>
|
|
|
|
{entity.address.email}<br>
|
|
|
|
{entity.address.phone}<br>
|
|
|
|
{entity.address.fax}
|
|
|
|
</p>
|
|
|
|
</f:if>
|
2021-02-03 17:20:01 +01:00
|
|
|
</f:for>
|
|
|
|
</html>
|