| 12345678910111213141516171819202122232425262728293031323334 |
- <html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
- <section>
- <div class="container-wrapper">
- <f:if condition="{data.sectionIndex}">
- <a id="c{data.uid}"></a>
- <f:if condition="{data._LOCALIZED_UID}">
- <a id="c{data._LOCALIZED_UID}"></a>
- </f:if>
- </f:if>
- <f:switch expression="{data.layout}">
- <f:case value="1">
- <f:variable name="containerClass" value="container"/>
- </f:case>
- <f:case value="2">
- <f:variable name="containerClass" value="container-fluid"/>
- </f:case>
- <f:case value="3">
- <f:variable name="containerClass" value="container-fluid p-0"/>
- </f:case>
- <f:defaultCase>
- <f:variable name="containerClass" value="container"/>
- </f:defaultCase>
- </f:switch>
- <div class="{containerClass} {f:if(condition: '{data.frame_class} != \'default\'', then: 'border border-{settings.borderStrength} {settings.borderRounded} border-{data.frame_class}')} layout-{data.layout} {data.space_before_class} {data.space_after_class}">
- <f:render section="Main" optional="true"/>
- </div>
- </div>
- </section>
- </html>
|