From 3da9d70fafdb807934b5efebc4ccb6426b78b5bc Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Mon, 18 Mar 2024 23:15:32 +0000 Subject: [PATCH] feat: add pubdate to listing --- src/pages/fun/index.js | 2 ++ src/pages/recipes/index.js | 1 + src/pages/writing/index.js | 2 ++ 3 files changed, 5 insertions(+) diff --git a/src/pages/fun/index.js b/src/pages/fun/index.js index 7e15c39..e7cfdec 100644 --- a/src/pages/fun/index.js +++ b/src/pages/fun/index.js @@ -19,6 +19,8 @@ export default function Fun ({ entries, urlPrefix }) {

{e.attributes.title}

+ {!!e.attributes.pubdate &&

{e.attributes.pubdate}

} +

{e.attributes.desc}

Read more diff --git a/src/pages/recipes/index.js b/src/pages/recipes/index.js index 00cf001..df01a53 100644 --- a/src/pages/recipes/index.js +++ b/src/pages/recipes/index.js @@ -19,6 +19,7 @@ export default function Recipes ({ entries, urlPrefix }) {

{e.attributes.title}

+ {!!e.attributes.pubdate &&

{e.attributes.pubdate}

}

{e.attributes.desc}

Read more diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js index 5bea89f..5a8ac65 100644 --- a/src/pages/writing/index.js +++ b/src/pages/writing/index.js @@ -22,6 +22,8 @@ export default function Writing ({ entries, urlPrefix }) {

{e.attributes.title}

+ {!!e.attributes.pubdate &&

{e.attributes.pubdate}

} +

{e.attributes.desc}

Read more