FreedomBox/plinth/templates/subsubmenu.html
Sunil Mohan Adapa e89e2b4a2a
*.html: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:39:19 +02:00

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>