Skip to content

Commit

Permalink
Fix reversed breadcrumbs in rtd theme (#2143)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkozera committed Sep 3, 2020
1 parent ff0b726 commit 5e0c703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkdocs/themes/readthedocs/breadcrumbs.html
Expand Up @@ -2,7 +2,7 @@
<ul class="wy-breadcrumbs">
<li><a href="{{ nav.homepage.url|url }}">Docs</a> &raquo;</li>
{% if page %}
{% for doc in page.ancestors %}
{% for doc in page.ancestors[::-1] %}
{% if doc.link %}
<li><a href="{{ doc.link|e }}">{{ doc.title }}</a> &raquo;</li>
{% else %}
Expand Down

0 comments on commit 5e0c703

Please sign in to comment.