Skip to content

Commit a4c2d4f

Browse files
Fix side nav in project docs
1 parent 908516f commit a4c2d4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs_theme/main.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ <h3 id="myModalLabel">Documentation search</h3>
9191

9292
{% for toc_item in page.toc %}
9393
<li class="{% if page and not page.is_homepage %}main{% endif %}">
94-
<a href="{{ toc_item.url|url }}">{{ toc_item.title }}</a>
94+
<a href="{{ toc_item.url }}">{{ toc_item.title }}</a>
9595
</li>
9696

9797
{% for toc_item in toc_item.children %}
9898
<li>
99-
<a href="{{ toc_item.url|url }}">{{ toc_item.title }}</a>
99+
<a href="{{ toc_item.url }}">{{ toc_item.title }}</a>
100100
</li>
101101
{% endfor %}
102102
{% endfor %}

0 commit comments

Comments
 (0)