| 12345678910111213141516171819202122232425262728293031323334 |
- {namespace flux=FluidTYPO3\Flux\ViewHelpers}
- {namespace v=FluidTYPO3\Vhs\ViewHelpers}
- <f:comment><!-- uses the layout 3Col, defined in layouts/[templateName]/3Col.html --></f:comment>
- <f:layout name="{settings.template}/3Col" />
- <f:section name='Configuration'>
- <flux:form id="3col" label="Gabarit 3 Colonnes" 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="Colonne Gauche" style="width: 25%" />
- <flux:grid.column colPos="0" name="Content" label="Contenu" style="width: 50%" />
- <flux:grid.column colPos="2" name="Rightcol" label="Colonne Droite" 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>
|