You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
1.4 KiB

<nav class="navbar navbar-expand-md navbar-dark bg-dark sticky-top">
<div class="container">
<span class="navbar-text site-name">
<a href="/">{{ SITENAME }} <strong>{{ SITESUBTITLE }}</strong></a>
</span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
{% for title, link, subsections in SECTIONS %}
<li class="nav-item dropdown">
<a
href="{{ link }}"
{% if subsections %}
class="nav-link dropdown-toggle"
id="navbardrop"
data-toggle="dropdown"
{% else %}
class="nav-link"
{% endif %}
>
{{ title }}
</a>
{% if subsections %}
<div class="dropdown-menu">
{% for title2, link2 in subsections %}
<a href="{{ link2 }}" class="dropdown-item">{{ title2 }}</a>
{% endfor %}
</div>
{% else %}
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
</nav>