TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:21 +02:00
commit be71cfa708
199 changed files with 4138 additions and 0 deletions
@@ -0,0 +1,98 @@
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<f:if condition="{rowIterator.isFirst}">
<f:then>
<f:if condition="{data.table_header_position} == 1">
<f:then>
<th>
</f:then>
<f:else>
<f:if condition="{columnIterator.isFirst}">
<f:then>
<f:if condition="{data.table_header_position} == 2">
<f:then>
<th>
</f:then>
<f:else>
<td>
</f:else>
</f:if>
</f:then>
<f:else>
<td>
</f:else>
</f:if>
</f:else>
</f:if>
</f:then>
<f:else>
<f:if condition="{columnIterator.isFirst}">
<f:then>
<f:if condition="{data.table_header_position} == 2">
<f:then>
<th>
</f:then>
<f:else>
<td>
</f:else>
</f:if>
</f:then>
<f:else>
<td>
</f:else>
</f:if>
</f:else>
</f:if>
<f:if condition="{cell} != ''">
<f:then>
{cell -> f:format.nl2br()}
</f:then>
<f:else>
&nbsp;
</f:else>
</f:if>
<f:if condition="{rowIterator.isFirst}">
<f:then>
<f:if condition="{data.table_header_position} == 1">
<f:then>
</th>
</f:then>
<f:else>
<f:if condition="{columnIterator.isFirst}">
<f:then>
<f:if condition="{data.table_header_position} == 2">
<f:then>
</th>
</f:then>
<f:else>
</td>
</f:else>
</f:if>
</f:then>
<f:else>
</td>
</f:else>
</f:if>
</f:else>
</f:if>
</f:then>
<f:else>
<f:if condition="{columnIterator.isFirst}">
<f:then>
<f:if condition="{data.table_header_position} == 2">
<f:then>
</th>
</f:then>
<f:else>
</td>
</f:else>
</f:if>
</f:then>
<f:else>
</td>
</f:else>
</f:if>
</f:else>
</f:if>
</html>