Header.html 1.1 KB

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