From 606d9a285be3a41f0e22c17dc197c8cfaf5c669a Mon Sep 17 00:00:00 2001 From: aleidk Date: Sat, 9 Sep 2023 11:30:44 -0300 Subject: [PATCH] fix metadata change in games --- src/content | 2 +- src/pages/games/index.astro | 21 +++++++++++++-------- src/pages/index.astro | 4 ++-- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/src/content b/src/content index 9e7ed8e..efff561 160000 --- a/src/content +++ b/src/content @@ -1 +1 @@ -Subproject commit 9e7ed8e596386ab05da15fa81a6d90c19d625f43 +Subproject commit efff561a802a40e93493d01a50ef228bfe0c485e diff --git a/src/pages/games/index.astro b/src/pages/games/index.astro index 61e19bc..c101c93 100644 --- a/src/pages/games/index.astro +++ b/src/pages/games/index.astro @@ -1,15 +1,20 @@ --- +import Layout from '../../layouts/Layout.astro'; import { getCollection } from 'astro:content'; const games = await getCollection('games'); --- -

Games

+ +

Games

- + +
diff --git a/src/pages/index.astro b/src/pages/index.astro index 5090a2c..82b2189 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -69,13 +69,13 @@ const games = await getCollection('games', (_, idx) => idx < 3); { games.map((item) => (
  • - {item.data.Title} + {item.data.title}
  • )) }
    - See more... + See more...