46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:layout name="Default" />
|
|
<f:section name="Header">
|
|
|
|
<f:if condition="{gallery.position.noWrap} != 1">
|
|
<f:render partial="Header/All" arguments="{_all}" />
|
|
</f:if>
|
|
|
|
</f:section>
|
|
<f:section name="Main">
|
|
|
|
<div class="ce-textpic ce-{gallery.position.horizontal} ce-{gallery.position.vertical}{f:if(condition: gallery.position.noWrap, then: ' ce-nowrap')}">
|
|
<f:if condition="{gallery.position.vertical} != 'below'">
|
|
<f:render partial="Media/Gallery" arguments="{_all}" />
|
|
</f:if>
|
|
|
|
<f:variable name="bodytext">{record -> f:render.text(field: 'bodytext')}</f:variable>
|
|
<f:if condition="{bodytext}">
|
|
<f:then>
|
|
<div class="ce-bodytext">
|
|
<f:if condition="{gallery.position.noWrap}">
|
|
<f:render partial="Header/All" arguments="{_all}" />
|
|
</f:if>
|
|
{bodytext}
|
|
</div>
|
|
</f:then>
|
|
<f:else>
|
|
<f:if condition="{gallery.position.noWrap}">
|
|
<f:variable name="header">{record -> f:render.text(field: 'header')}</f:variable>
|
|
<f:if condition="{header}">
|
|
<div class="ce-bodytext">
|
|
<f:render partial="Header/All" arguments="{_all}" />
|
|
</div>
|
|
</f:if>
|
|
</f:if>
|
|
</f:else>
|
|
</f:if>
|
|
|
|
<f:if condition="{gallery.position.vertical} == 'below'">
|
|
<f:render partial="Media/Gallery" arguments="{_all}" />
|
|
</f:if>
|
|
</div>
|
|
|
|
</f:section>
|
|
</html>
|