3Col.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <f:comment><!-- base layout for a page, with header, carousel, navbar, breadcrumb and footer --></f:comment>
  2. <f:layout name="3Col" />
  3. <f:comment><!-- Render the header defined in partial/header.html--></f:comment>
  4. <f:render partial="Classic/Header" arguments="{_all}" />
  5. <div class="main">
  6. <f:comment><!-- Left column --></f:comment>
  7. <div class="leftcol">
  8. <div class="content">
  9. <f:comment><!-- render the content of the leftcol section (left column) --></f:comment>
  10. <f:render section="Leftcol" />
  11. </div>
  12. </div>
  13. <f:comment><!-- Central column --></f:comment>
  14. <div class="centralcol">
  15. <div class="content">
  16. <f:comment><!-- render the content of the content section (middle column) --></f:comment>
  17. <f:render section="Content" />
  18. </div>
  19. </div>
  20. <f:comment><!-- Right column --></f:comment>
  21. <div class="rightcol">
  22. <div class="content">
  23. <f:comment><!-- render the content of the rightcol section (right column) --></f:comment>
  24. <f:render section="Rightcol" />
  25. </div>
  26. </div>
  27. </div> <!-- /container -->
  28. <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
  29. <f:render partial="Classic/Footer" />