Skip to content

Commit aa63496

Browse files
authored
Tweak loop to avoid pages with no titles (#1974)
1 parent 7ddde14 commit aa63496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

translation-concordance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ An automatically-generated list of page translation relationships across our pub
2626
{% endfor %}
2727
</table>
2828

29-
{% assign original_pages = site.pages | where_exp: "item", "item.name != 'redirect.html'" | where_exp: "item", "item.name != 'redirects.json'" | where_exp: "item", "item.name != 'index.md'" | where_exp: "item", "item.original == nil" | where_exp: "item", "item.layout != 'lesson'" | where_exp: "item", "item.layout != 'post'" | where_exp: "item", "item.skip_concordance != true" %}
29+
{% assign original_pages = site.pages | where_exp: "item", "item.name != 'redirect.html'" | where_exp: "item", "item.name != 'redirects.json'" | where_exp: "item", "item.name != 'index.md'" | where_exp: "item", "item.original == nil" | where_exp: "item", "item.layout != 'lesson'" | where_exp: "item", "item.layout != 'post'" | where_exp: "item", "item.skip_concordance != true" | where_exp: "item", "item.title != nil"%}
3030

3131
## Other pages
3232

0 commit comments

Comments
 (0)