test changes for setting up "pages" page

This commit is contained in:
Jonathan Souter
2023-02-28 17:41:35 +10:30
parent 91ab640500
commit 986d663586
5 changed files with 31 additions and 1 deletions

17
src/pages.md Normal file
View File

@ -0,0 +1,17 @@
---
layout: layout/base.njk
title: pages
---
{% if collections.blog.length > 0 %}
blog posts
{% endif %}
{% for post in collections.blog | reverse %}
\- [{{ post.data.title }}](/blog/{{ post.data.page.fileSlug }})
{% endfor %}
{% if collections.music.length > 0 %}
music
{% endif %}
{% for post in collections.music | reverse %}
\- [{{ post.data.title }}]({{ post.data.page.fileSlug }})
{% endfor %}