1Col.html 650 B

12345678910111213141516171819
  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="header" arguments="{_all}" />
  5. <div class="main">
  6. <f:comment><!-- Central column --></f:comment>
  7. <div class="content">
  8. <f:comment><!-- render the content of the content section (middle column) --></f:comment>
  9. <f:render section="Content" />
  10. </div>
  11. </div> <!-- /container -->
  12. <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
  13. <f:render partial="footer" />