1Col.html 702 B

123456789101112131415161718192021
  1. <f:comment><!-- base layout for a page, with header, carousel, navbar, breadcrumb and footer --></f:comment>
  2. <f:layout name="1Col" />
  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><!-- Central column --></f:comment>
  7. <div class="centralcol">
  8. <div class="content">
  9. <f:comment><!-- render the content of the content section (middle column) --></f:comment>
  10. <f:render section="Content" />
  11. </div>
  12. </div>
  13. </div>
  14. <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
  15. <f:render partial="Classic/Footer" />