3Col.html 886 B

123456789101112131415161718192021222324
  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. <f:comment><!-- Render the header defined in partials/Header.html--></f:comment>
  5. <f:render partial="Modern/Header" arguments="{_all}" />
  6. <f:comment><!-- Render content --></f:comment>
  7. <section class="page-section-ptb">
  8. <div class="container">
  9. <div class="row">
  10. <div class="col-sm-12 mt-30">
  11. <f:comment><!-- render the content of the content section (middle column) --></f:comment>
  12. <f:render section="Content" />
  13. </div>
  14. </div>
  15. </div>
  16. </section>
  17. <f:comment><!-- Render the footer defined in partials/footer.html--></f:comment>
  18. <f:render partial="Modern/Footer" />
  19. </div>