diff --git a/src/blog.md b/src/blog.md index 8ef1452..deeed8a 100644 --- a/src/blog.md +++ b/src/blog.md @@ -4,4 +4,5 @@ layout: layout/base.njk eleventyImport.collections: ["blog"] --- -![](https://64.media.tumblr.com/8609103ac770ec5e2cd5fb497b3e118b/5f2a048817dd5fe3-f8/s400x600/54c8bfccac37457bd00cd5d69aab5ee2f0acfb7c.gifv) \ No newline at end of file +{% for post in collections.blog %} + \- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }}) \ No newline at end of file diff --git a/src/games.md b/src/games.md new file mode 100644 index 0000000..040086e --- /dev/null +++ b/src/games.md @@ -0,0 +1,8 @@ +--- +title: games +layout: layout/base.njk +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 }}) \ No newline at end of file diff --git a/src/games/games.json b/src/games/games.json index 1b4d6ea..d7970de 100644 --- a/src/games/games.json +++ b/src/games/games.json @@ -1,4 +1,4 @@ { "layout": "layout/blog", - "tags": "games" + "tags": "game" } \ No newline at end of file diff --git a/src/lists.md b/src/lists.md new file mode 100644 index 0000000..714e508 --- /dev/null +++ b/src/lists.md @@ -0,0 +1,8 @@ +--- +title: lists +layout: layout/base.njk +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 }}) \ No newline at end of file diff --git a/src/lists/lists.json b/src/lists/lists.json index ede68bc..b097f30 100644 --- a/src/lists/lists.json +++ b/src/lists/lists.json @@ -1,4 +1,4 @@ { "layout": "layout/blog", - "tags": "lists" + "tags": "list" } \ No newline at end of file diff --git a/src/music.md b/src/music.md new file mode 100644 index 0000000..af7a690 --- /dev/null +++ b/src/music.md @@ -0,0 +1,8 @@ +--- +title: music +layout: layout/base.njk +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 }}) \ No newline at end of file