close out for loops in collection pages
This commit is contained in:
@ -5,4 +5,5 @@ eleventyImport.collections: ["blog"]
|
||||
---
|
||||
|
||||
{% for post in collections.blog %}
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
{% endfor %}
|
@ -5,4 +5,5 @@ eleventyImport.collections: ["games"]
|
||||
---
|
||||
|
||||
{% for post in collections.game %}
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
{% endfor %}
|
@ -5,4 +5,5 @@ eleventyImport.collections: ["list"]
|
||||
---
|
||||
|
||||
{% for post in collections.list %}
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
{% endfor %}
|
@ -5,4 +5,5 @@ eleventyImport.collections: ["music"]
|
||||
---
|
||||
|
||||
{% for post in collections.music %}
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
|
||||
{% endfor %}
|
Reference in New Issue
Block a user