Breadcrumb.html 832 B

123456789101112131415161718192021222324252627
  1. <html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
  2. <f:comment>
  3. <!-- Use <f:cObject typoscriptObjectPath="lib.breadcrumb"/> since this will be used within CE and DCE templates aswell -->
  4. </f:comment>
  5. <section class="breadcrumb">
  6. <div class="breadcrumbwrapper">
  7. <div class="container">
  8. <div class="row">
  9. <div class="col">
  10. <ul>
  11. <f:for each="{breadcrumbnavigation}" as="item">
  12. <li class="{f:if(condition: item.current, then: 'active')}">
  13. <a href="{item.link}" target="{f:if(condition: item.target, then: item.target, else: '_self')}">
  14. {item.title}
  15. </a>
  16. </li>
  17. </f:for>
  18. </ul>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </section>
  24. </html>