| 1234567891011121314151617181920212223242526 |
- {namespace v=FluidTYPO3\Vhs\ViewHelpers}
- <f:comment><!--Header partial: contains various partials, like topbar, cariousel, breadcrumb...--></f:comment>
- <f:comment><!-- Render the assets' includes --></f:comment>
- <f:render partial="Classic/Assets" />
- <header>
- <f:comment><!-- Render the topbar defined in partial/Topbar.html--></f:comment>
- <f:render partial="Classic/Topbar" arguments="{_all}" />
- <f:comment><!-- Render the no-script warning box defined in partial/NoScriptWarning.html--></f:comment>
- <f:render partial="Classic/NoScriptWarning" />
- <f:if condition="{settings.displayCarousel}==1">
- <then>
- <f:comment><!-- Render the carousel defined in partial/Carousel.html--></f:comment>
- <f:render partial="Classic/Carousel" />
- </then>
- </f:if>
- <f:comment><!-- Render the navbar defined in partial/Navbar.html--></f:comment>
- <f:render partial="Classic/Menu" />
- <f:comment><!-- Render the breadcrumb defined in partial/Breadcrumb.html--></f:comment>
- <f:render partial="Classic/Breadcrumb" />
- </header>
|