]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/wiki/modules/navbar.html
350905d5376cd0576b5b70fbdfc7723ac2652b44
[ipfire.org.git] / src / templates / wiki / modules / navbar.html
1 {% if len(breadcrumbs) >= 1 %}
2 <ol class="breadcrumb">
3 {% for page, title in breadcrumbs %}
4 <li class="breadcrumb-item">
5 <a href="{{ page }}">{{ title }}</a>
6 </li>
7 {% end %}
8
9 <li class="breadcrumb-item {% if not suffix %}active{% end %}">
10 {{ page_title }}
11 </li>
12
13 {% if suffix %}
14 <li class="breadcrumb-item active">{{ suffix }}</li>
15 {% end %}
16 </ol>
17 {% end %}