ntopng/httpdocs/templates/pages/components/breadcrumb.template
2021-02-19 19:24:09 +01:00

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>