| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
- <f:if condition="{data.frame_class} != none">
- <f:then>
- <f:if condition="{data.frame_class} != 'default'">
- <div class="{data.frame_class}">
- </f:if>
- <div id="c{data.uid}"
- class="ce ce-{data.CType} layout-{data.layout} {data.space_before_class} {data.space_after_class}">
- <f:if condition="{data._LOCALIZED_UID}">
- <a id="c{data._LOCALIZED_UID}"></a>
- </f:if>
- <f:render section="Before" optional="true">
- <f:render partial="DropIn/Before/All" arguments="{_all}"/>
- </f:render>
- <f:render section="Header" optional="true">
- <f:render partial="Header/All" arguments="{_all}"/>
- </f:render>
- <f:render section="Main" optional="true"/>
- <f:render section="Footer" optional="true">
- <f:render partial="Footer/All" arguments="{_all}"/>
- </f:render>
- <f:render section="After" optional="true">
- <f:render partial="DropIn/After/All" arguments="{_all}"/>
- </f:render>
- </div>
- <f:if condition="{data.frame_class} != 'default'">
- </div>
- </f:if>
- </f:then>
- <f:else>
- <a id="c{data.uid}"></a>
- <f:if condition="{data._LOCALIZED_UID}">
- <a id="c{data._LOCALIZED_UID}"></a>
- </f:if>
- <f:render section="Before" optional="true">
- <f:render partial="DropIn/Before/All" arguments="{_all}"/>
- </f:render>
- <f:render section="Header" optional="true">
- <f:render partial="Header/All" arguments="{_all}"/>
- </f:render>
- <f:render section="Main" optional="true"/>
- <f:render section="Footer" optional="true">
- <f:render partial="Footer/All" arguments="{_all}"/>
- </f:render>
- <f:render section="After" optional="true">
- <f:render partial="DropIn/After/All" arguments="{_all}"/>
- </f:render>
- </f:else>
- </f:if>
- </html>
|