mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
19 lines
No EOL
708 B
Text
19 lines
No EOL
708 B
Text
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item" aria-current="page">
|
|
<i class="{{ breadcrumb_icon }}"></i>
|
|
{{ i18n_title }}
|
|
</li>
|
|
{% for _, item in ipairs(items) do %}
|
|
<li class="breadcrumb-item" aria-current="page">
|
|
<a {% if item.href then %} href="{{ item.href }}" {% end %} class="{{ (item.active and 'active' or '') }}">
|
|
{% if item.active then %}
|
|
<b>{{ item.label }}</b>
|
|
{% else %}
|
|
{{ item.label }}
|
|
{% end %}
|
|
</a>
|
|
</li>
|
|
{% end %}
|
|
</ol>
|
|
</nav> |