| 12345678910111213141516171819 |
- <f:comment><!-- base layout for a page, with header, carousel, navbar, breadcrumb and footer --></f:comment>
- <f:layout name="1Col" />
- <f:comment><!-- Render the header defined in partial/header.html--></f:comment>
- <f:render partial="header" arguments="{_all}" />
- <div class="main">
- <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>
- </div> <!-- /container -->
- <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
- <f:render partial="footer" />
|