datatracker/ietf/templates/doc/document_top.html
Lars Eggert 9d5d9d5172
fix: replace deprecated bootstrap things (#5858)
* text-muted -> text-body-secondary

* navbar-dark is deprecated

* Remove FIXME block, not an issue anymore

* Remove `navbar-light`
2023-07-18 12:22:28 -05:00

20 lines
660 B
HTML

{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% origin %}
{% load ietf_filters %}
<h1>
{{ doc.title|default:"(Untitled)" }}
<br>
<small class="text-body-secondary">{{ name }}</small>
</h1>
<ul class="nav nav-tabs my-3">
{% for name, t, url, active, tooltip in tabs %}
<li {% if tooltip %}title="{{ tooltip }}"{% endif %} class="nav-item">
<a class="nav-link {% if t == selected %}active{% endif %}{% if not active %}disabled{% endif %}"
{% if active %}href="{{ url }}"{% endif %}>
{{ name|capfirst_allcaps }}
</a>
</li>
{% endfor %}
</ul>