Home.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <f:comment><!-- base layout for a page, with header, carousel, navbar, breadcrumb and footer --></f:comment>
  2. <f:layout name="Home" />
  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><!-- Left column --></f:comment>
  7. <div class="leftcol">
  8. <f:comment><!-- Render the next events section defined in partial/NextEvents.html--></f:comment>
  9. <f:render partial="eventsPreview" />
  10. <f:comment><!-- render the content of the leftcol section (left column) --></f:comment>
  11. <f:render section="Leftcol" />
  12. </div>
  13. <f:comment><!-- Central column --></f:comment>
  14. <div class="content">
  15. <f:comment><!-- render the content of the content section (middle column) --></f:comment>
  16. <f:render section="Content" />
  17. </div>
  18. <f:comment><!-- Right column --></f:comment>
  19. <div class="rightcol">
  20. <f:comment><!-- Render the donors section defined in partial/Donors.html--></f:comment>
  21. <f:render partial="donors" />
  22. <f:comment><!-- defines the content of the rightcol section (right column) --></f:comment>
  23. <f:render section="Rightcol" />
  24. </div>
  25. </div> <!-- /container -->
  26. <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
  27. <f:render partial="footer" />