Remove categories
This commit is contained in:
parent
0d38235262
commit
16a384eedc
1 changed files with 11 additions and 36 deletions
|
@ -47,42 +47,17 @@
|
||||||
<div class="collapse navbar-collapse" id="navbarNav">
|
<div class="collapse navbar-collapse" id="navbarNav">
|
||||||
<ul class="navbar-nav">
|
<ul class="navbar-nav">
|
||||||
{% for menu_item in config.extra.menu_items %}
|
{% for menu_item in config.extra.menu_items %}
|
||||||
{% if menu_item.url %}
|
<!-- Single item, not a category -->
|
||||||
<!-- Single item, not a category -->
|
<li class="nav-item">
|
||||||
<li class="nav-item">
|
<a
|
||||||
<a
|
class="nav-link"
|
||||||
class="nav-link"
|
href="{{ menu_item.url }}"
|
||||||
href="{{ menu_item.url }}"
|
>
|
||||||
>
|
<span class="underline-on-hover" style="color: {{ config.extra.secondary_color }}; font-size: 17px;">
|
||||||
<span class="underline-on-hover" style="color: {{ config.extra.secondary_color }}; font-size: 17px;">
|
{{ menu_item.name }}
|
||||||
{{ menu_item.name }}
|
</span>
|
||||||
</span>
|
</a>
|
||||||
</a>
|
</li>
|
||||||
</li>
|
|
||||||
{% else %}
|
|
||||||
<!-- Category with multiple subitems -->
|
|
||||||
<li class="nav-item dropdown">
|
|
||||||
<a class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
||||||
<font color="{{ config.extra.secondary_color }}">
|
|
||||||
{{ menu_item.name }}
|
|
||||||
</font>
|
|
||||||
</a>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
{% for link in menu_item.links %}
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
class="dropdown-item"
|
|
||||||
href="{{ link.url }}"
|
|
||||||
>
|
|
||||||
<font color="{{ config.extra.secondary_color }}">
|
|
||||||
{{ link.name }}
|
|
||||||
</font>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue