Header.html 1.2 KB

12345678910111213141516171819202122232425262728
  1. {namespace v=FluidTYPO3\Vhs\ViewHelpers}
  2. {namespace ot=Opentalent\OtTemplating\ViewHelpers}
  3. <f:comment><!--Header partial: contains various partials, like topbar, cariousel, breadcrumb...--></f:comment>
  4. <f:comment><!-- Render the assets' includes --></f:comment>
  5. <f:render partial="Classic/Assets" />
  6. <header>
  7. <f:comment><!-- Render the topbar defined in partial/Topbar.html--></f:comment>
  8. <f:render partial="Classic/Topbar" arguments="{_all}" />
  9. <f:comment><!-- Render the no-script warning box defined in partial/NoScriptWarning.html--></f:comment>
  10. <f:render partial="Classic/NoScriptWarning" />
  11. <f:if condition="{ot:template.getPreference(key: 'displayCarousel')}==1">
  12. <f:comment><!-- Render the carousel defined in partial/Carousel.html--></f:comment>
  13. <f:render partial="Classic/Carousel" />
  14. </f:if>
  15. <f:comment><!-- Render the navbar defined in partial/Navbar.html--></f:comment>
  16. <f:render partial="Classic/Menu" />
  17. <f:if condition="{ot:template.getPreference(key: 'displayBreadcrumb')}==1">
  18. <f:comment><!-- Render the breadcrumb defined in partial/Breadcrumb.html--></f:comment>
  19. <f:render partial="Classic/Breadcrumb" />
  20. </f:if>
  21. </header>