| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <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="Classic/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="Classic/NextEvents" arguments="{settings: settings}"/>
- <f:if condition="{settings.organizationIsNetwork}==0">
- <f:render partial="Classic/NextEvents" arguments="{settings: settings, fromParents: 1}"/>
- </f:if>
- <f:if condition="{settings.organizationIsNetwork}==1">
- <f:render partial="Classic/NextEvents" arguments="{settings: settings, fromChildren: 1}"/>
- </f:if>
- <div class="content">
- <f:comment><!-- render the content of the leftcol section (left column) --></f:comment>
- <f:render section="Leftcol" />
- </div>
- </div>
- <f:comment><!-- Central column --></f:comment>
- <div class="centralcol">
- <div class="content">
- <f:comment><!-- render the content of the content section (middle column) --></f:comment>
- <f:render section="Content" />
- </div>
- </div>
- <f:comment><!-- Right column --></f:comment>
- <div class="rightcol">
- <f:comment><!-- Render the last news section defined in partial/LastNews.html--></f:comment>
- <f:render partial="Classic/LatestNews" />
- <f:comment><!-- Render the donors section defined in partial/Donors.html--></f:comment>
- <f:render partial="Classic/Donors" arguments="{settings: settings}" />
- <f:render partial="Classic/Donors" arguments="{settings: settings, fromParents: 1}"/>
- <div class="content">
- <f:comment><!-- defines the content of the rightcol section (right column) --></f:comment>
- <f:render section="Rightcol" />
- </div>
- </div>
- </div> <!-- /container -->
- <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
- <f:render partial="Classic/Footer" />
|