| 12345678910111213141516171819202122232425262728293031323334 |
- {namespace flux=FluidTYPO3\Flux\ViewHelpers}
- {namespace v=FluidTYPO3\Vhs\ViewHelpers}
- {namespace ot=Opentalent\OtTemplating\ViewHelpers}
- <f:comment><!-- uses the layout 3Col, defined in layouts/[templateName]/3Col.html --></f:comment>
- <f:layout name="{ot:template.current()}/3Col" />
- <f:section name='Configuration'>
- <flux:form id="3col" label="LLL:template_3col" extensionName="Opentalent.OtTemplating">
- </flux:form>
- <f:comment><!-- Backend layout grid --></f:comment>
- <flux:grid>
- <flux:grid.row>
- <flux:grid.column colPos="1" name="Leftcol" label="LLL:left_column" style="width: 25%" />
- <flux:grid.column colPos="0" name="Content" label="LLL:content" style="width: 50%" />
- <flux:grid.column colPos="2" name="Rightcol" label="LLL:right_column" style="width: 25%" />
- </flux:grid.row>
- </flux:grid>
- </f:section>
- <f:section name="Leftcol">
- <f:comment><!-- Render colPos=1 in this section --></f:comment>
- <v:content.render column="1" />
- </f:section>
- <f:section name="Content">
- <f:comment><!-- Render colPos=0 in this section --></f:comment>
- <v:content.render column="0" />
- </f:section>
- <f:section name="Rightcol">
- <f:comment><!-- Render colPos=2 in this section --></f:comment>
- <v:content.render column="2" />
- </f:section>
|