| 123456789101112131415161718192021222324252627282930313233343536 |
- <f:comment><!-- base layout for a page, with header, carousel, navbar, breadcrumb and footer --></f:comment>
- <f:layout name="Home" />
- <f:comment><!-- Render the header defined in partial/header.html--></f:comment>
- <f:render partial="header" arguments="{_all}" />
- <div class="main">
- <f:comment><!-- Left column --></f:comment>
- <div class="leftcol">
- <f:comment><!-- Render the next events section defined in partial/NextEvents.html--></f:comment>
- <f:render partial="eventsPreview" />
- <f:comment><!-- render the content of the leftcol section (left column) --></f:comment>
- <f:render section="Leftcol" />
- </div>
- <f:comment><!-- Central column --></f:comment>
- <div class="content">
- <f:comment><!-- render the content of the content section (middle column) --></f:comment>
- <f:render section="Content" />
- </div>
- <f:comment><!-- Right column --></f:comment>
- <div class="rightcol">
- <f:comment><!-- Render the donors section defined in partial/Donors.html--></f:comment>
- <f:render partial="donors" />
- <f:comment><!-- defines the content of the rightcol section (right column) --></f:comment>
- <f:render section="Rightcol" />
- </div>
- </div> <!-- /container -->
- <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
- <f:render partial="footer" />
|