3Col.html 1.3 KB

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