Home.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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="Classic/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="Classic/EventsPreview" />
  10. <div class="content">
  11. <f:comment><!-- render the content of the leftcol section (left column) --></f:comment>
  12. <f:render section="Leftcol" />
  13. </div>
  14. </div>
  15. <f:comment><!-- Central column --></f:comment>
  16. <div class="centralcol">
  17. <div class="content">
  18. <f:comment><!-- render the content of the content section (middle column) --></f:comment>
  19. <f:render section="Content" />
  20. </div>
  21. </div>
  22. <f:comment><!-- Right column --></f:comment>
  23. <div class="rightcol">
  24. <f:comment><!-- Render the donors section defined in partial/Donors.html--></f:comment>
  25. <f:render partial="Classic/Donors" />
  26. <div class="content">
  27. <f:comment><!-- defines the content of the rightcol section (right column) --></f:comment>
  28. <f:render section="Rightcol" />
  29. </div>
  30. </div>
  31. </div> <!-- /container -->
  32. <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
  33. <f:render partial="Classic/Footer" />