make lists and games plural

This commit is contained in:
2023-05-02 10:56:36 +09:30
parent 9d0c5f3eef
commit f31e48ced3
9 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@ eleventyImport.collections: ["games"]
---
<div class="pages-article">
{% for post in collections.game | reverse %}
\- [{{ post.data.title or post.data.page.fileSlug }}](/game/{{ post.data.page.fileSlug }})
{% for post in collections.games | reverse %}
\- [{{ post.data.title or post.data.page.fileSlug }}](/games/{{ post.data.page.fileSlug }})
{% endfor %}
</div>