| 123456789101112131415161718192021222324252627 |
- <html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
- <f:comment>
- <!-- Use <f:cObject typoscriptObjectPath="lib.breadcrumb"/> since this will be used within CE and DCE templates aswell -->
- </f:comment>
- <section class="breadcrumb">
- <div class="breadcrumbwrapper">
- <div class="container">
- <div class="row">
- <div class="col">
- <ul>
- <f:for each="{breadcrumbnavigation}" as="item">
- <li class="{f:if(condition: item.current, then: 'active')}">
- <a href="{item.link}" target="{f:if(condition: item.target, then: item.target, else: '_self')}">
- {item.title}
- </a>
- </li>
- </f:for>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </section>
- </html>
|