3Col.html 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <f:comment><!-- base layout for a page, with header, carousel, navbar, breadcrumb and footer --></f:comment>
  2. <f:layout name="3Col" />
  3. <div class="t-container st-effect-3">
  4. <div class="wrapper">
  5. <f:comment><!-- Render the header defined in partials/Header.html--></f:comment>
  6. <f:render partial="Modern/Header" arguments="{_all}" />
  7. <f:comment><!-- Render content --></f:comment>
  8. <section class="page-section-ptb">
  9. <div class="container">
  10. <div class="row">
  11. <div class="col-sm-12 mt-30">
  12. <f:comment><!-- render the content of the content section (middle column) --></f:comment>
  13. <f:render section="Content" />
  14. <f:comment><!-- render the content of the leftcol section (left column) --></f:comment>
  15. <f:render section="Leftcol" />
  16. <f:comment><!-- render the content of the rightcol section (right column) --></f:comment>
  17. <f:render section="Rightcol" />
  18. </div>
  19. </div>
  20. </div>
  21. </section>
  22. <f:comment><!-- Render the footer defined in partials/footer.html--></f:comment>
  23. <f:render partial="Modern/Footer" />
  24. </div>
  25. </div>