Skip to content

Commit b64a864

Browse files
committed
Fix a minor HTML issue - ul can't be a child of ul
1 parent 5922908 commit b64a864

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

readthedocs/templates/core/header.html

+6-8
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,12 @@ <h1>
2525
</div>
2626
<div class="menu-dropdown">
2727
<ul>
28-
<ul>
29-
<li><a href="{% url 'projects_dashboard' %}">{% trans "My Projects" %}</a></li>
30-
<li><a href="{% url 'profiles_profile_edit' %}">{% trans "Settings" %}</a></li>
31-
<li><a href="{% url 'support' %}">{% trans "Support" %}</a></li>
32-
</ul>
33-
<ul>
34-
<li><a href="{% url 'account_logout' %}">{% trans "Log Out" %}</a></li>
35-
</ul>
28+
<li><a href="{% url 'projects_dashboard' %}">{% trans "My Projects" %}</a></li>
29+
<li><a href="{% url 'profiles_profile_edit' %}">{% trans "Settings" %}</a></li>
30+
<li><a href="{% url 'support' %}">{% trans "Support" %}</a></li>
31+
</ul>
32+
<ul>
33+
<li><a href="{% url 'account_logout' %}">{% trans "Log Out" %}</a></li>
3634
</ul>
3735
</div>
3836
</div>

0 commit comments

Comments
 (0)