Skip to content

Commit 4dc24e8

Browse files
authored
Merge pull request #3163 from davidfischer/minor-html-issue
Fix a minor HTML issue - ul can't be a child of ul
2 parents ad29800 + b64a864 commit 4dc24e8

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)