mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 22:56:09 +01:00
19 lines
504 B
HTML
19 lines
504 B
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">
|
|
<f:if condition="{settings.template} === 'table'">
|
|
<f:then>
|
|
{f:render(partial: 'Date/ListTable', arguments: _all)}
|
|
</f:then>
|
|
<f:else>
|
|
{f:render(partial: 'Date/ListDefault', arguments: _all)}
|
|
</f:else>
|
|
</f:if>
|
|
</f:section>
|
|
|
|
</html>
|