Skip to content

Commit 019712b

Browse files
committed
Fix to index page of overviews to filter out translated documents from being additionally added to list
1 parent b2b2954 commit 019712b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overviews/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ title: Guides and Overviews
2020
<ul>
2121
{% for i in (1..totalPages) %}
2222
{% for pg in site.pages %}
23-
{% if pg.partof == post.partof and pg.num and pg.num == i%}
23+
{% if pg.partof == post.partof and pg.num and pg.num == i and pg.language == nil %}
2424
<li><a href="{{ pg.url }}">{{ pg.title }}</a></li>
2525
{% endif %}
2626
{% endfor %}

0 commit comments

Comments
 (0)