-
Notifications
You must be signed in to change notification settings - Fork 0
/
breadcrumb.twig
17 lines (16 loc) · 977 Bytes
/
breadcrumb.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{#------------------------------------------------------------------------------------------------------#}
{# Breadcrumb Nav #}
{# -------------- #}
{# Baut die klassische Breadcrumb-Navigation auf, je Button, eine Stufe zurück. #}
{#------------------------------------------------------------------------------------------------------#}
<!-- Breadcrumb -->
<div class="container-fluid bg-light py-1">
<div class="container mb-2">
<a href="/" class="badge bg-secondary">home</a>
{% for path in current_page.id|split('/',-1) %}
{% set tmp = [tmp,path]|join('/') %}
<a href="{{tmp}}" class="badge bg-secondary">{{path}}</a>
{% endfor %}
</div>
</div>
<!-- Breadcrumb -->