mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
15 lines
329 B
HTML
15 lines
329 B
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
<ul class="nav nav-tabs">
|
|
{% for urlitem in subsubmenu %}
|
|
<li {% if urlitem.active %} class="active"{% endif %}
|
|
role="presentation">
|
|
<a href="{{ urlitem.url }}">{{ urlitem.text }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|