| 12345678910111213141516171819202122232425262728 |
- {namespace v=FluidTYPO3\Vhs\ViewHelpers}
- {namespace ot=Opentalent\OtTemplating\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="{ot:template.getPreference(key: 'displayCarousel')}==1">
- <f:comment><!-- Render the carousel defined in partial/Carousel.html--></f:comment>
- <f:render partial="Classic/Carousel" />
- </f:if>
- <f:comment><!-- Render the navbar defined in partial/Navbar.html--></f:comment>
- <f:render partial="Classic/Menu" />
- <f:if condition="{ot:template.getPreference(key: 'displayBreadcrumb')}==1">
- <f:comment><!-- Render the breadcrumb defined in partial/Breadcrumb.html--></f:comment>
- <f:render partial="Classic/Breadcrumb" />
- </f:if>
- </header>
|