3Col.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. {namespace flux=FluidTYPO3\Flux\ViewHelpers}
  2. {namespace v=FluidTYPO3\Vhs\ViewHelpers}
  3. <f:comment><!-- uses the layout 3Col, defined in layouts/[templateName]/3Col.html --></f:comment>
  4. <f:layout name="{settings.template}/3Col" />
  5. <f:section name='Configuration'>
  6. <flux:form id="3col" label="Gabarit 3 Colonnes" extensionName="Opentalent.OtTemplating">
  7. </flux:form>
  8. <f:comment><!-- Backend layout grid --></f:comment>
  9. <flux:grid>
  10. <flux:grid.row>
  11. <flux:grid.column colPos="1" name="Leftcol" label="Colonne Gauche" style="width: 25%" />
  12. <flux:grid.column colPos="0" name="Content" label="Contenu" style="width: 50%" />
  13. <flux:grid.column colPos="2" name="Rightcol" label="Colonne Droite" style="width: 25%" />
  14. </flux:grid.row>
  15. </flux:grid>
  16. </f:section>
  17. <f:section name="Leftcol">
  18. <f:comment><!-- Render colPos=1 in this section --></f:comment>
  19. <v:content.render column="1" />
  20. </f:section>
  21. <f:section name="Content">
  22. <f:comment><!-- Render colPos=0 in this section --></f:comment>
  23. <v:content.render column="0" />
  24. </f:section>
  25. <f:section name="Rightcol">
  26. <f:comment><!-- Render colPos=2 in this section --></f:comment>
  27. <v:content.render column="2" />
  28. </f:section>