3Col.html 1.1 KB

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