Skip to content

Commit

Permalink
fix(html): wrong child element
Browse files Browse the repository at this point in the history
Error: Element li not allowed as child of element div in this context. (Suppressing further errors from this subtree.)
Source: Nu Html Checker
  • Loading branch information
Rotzbua committed Dec 19, 2023
1 parent bdbbf51 commit 37d3f84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</div>
{% endfor %}
<div class="nav-item ml-2 ml-sm-1 text-center">
<li class="nav-item dropdown mb-0">
<div class="nav-item dropdown mb-0">
<button class="nav-link dropdown-toggle" id="navbarDropdown" aria-label="{% t generic.accessibility.lang-menu %}"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-globe size-16 color-gray-900"></i><span
Expand All @@ -32,7 +32,7 @@
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
{% include nav_languages.html %}
</div>
</li>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 37d3f84

Please sign in to comment.