From 761be4b8a74e1ab140f1fe38ebbbeed1369e1fd5 Mon Sep 17 00:00:00 2001 From: Auggie Bennett Date: Tue, 18 Mar 2025 15:57:32 -0500 Subject: [PATCH] fixed the archive and added the 2lbcf --- src/pages/archive.tsx | 26 +++++++++++----------- src/pages/resources.tsx | 48 ++++++++++++++++++++--------------------- 2 files changed, 37 insertions(+), 37 deletions(-) diff --git a/src/pages/archive.tsx b/src/pages/archive.tsx index 6eace2d..c0e872f 100644 --- a/src/pages/archive.tsx +++ b/src/pages/archive.tsx @@ -41,23 +41,23 @@ const Archive: React.FC = ({ posts, years }) => {

{post.excerpt}

-
- +
+
+ {post.tags.map(tag => ( + + {tag} + + ))} +
+ Read post
-
- {post.tags.map(tag => ( - - {tag} - - ))} -
))} diff --git a/src/pages/resources.tsx b/src/pages/resources.tsx index f453a3d..d1cb714 100644 --- a/src/pages/resources.tsx +++ b/src/pages/resources.tsx @@ -11,29 +11,29 @@ interface Resource { const Resources: React.FC = () => { const resources: Resource[] = [ + // { + // title: "Institutes of the Christian Religion", + // author: "John Calvin", + // description: "Calvin's magnum opus on systematic theology, covering the doctrines of God, man, salvation, and the church.", + // category: "Books" + // }, + // { + // title: "The Bondage of the Will", + // author: "Martin Luther", + // description: "Luther's defense of the doctrine of total depravity and God's sovereignty in salvation.", + // category: "Books" + // }, + // { + // title: "Chosen by God", + // author: "R.C. Sproul", + // description: "An accessible introduction to the doctrine of predestination.", + // category: "Books" + // }, { - title: "Institutes of the Christian Religion", - author: "John Calvin", - description: "Calvin's magnum opus on systematic theology, covering the doctrines of God, man, salvation, and the church.", - category: "Books" - }, - { - title: "The Bondage of the Will", - author: "Martin Luther", - description: "Luther's defense of the doctrine of total depravity and God's sovereignty in salvation.", - category: "Books" - }, - { - title: "Chosen by God", - author: "R.C. Sproul", - description: "A accessible introduction to the doctrine of predestination.", - category: "Books" - }, - { - title: "The Westminster Confession of Faith", - author: "Westminster Assembly", - description: "A historic Reformed confession of faith that remains influential today.", - link: "https://www.pcaac.org/bco/westminster-confession/", + title: "The Second London Baptist Confession of Faith (1689)", + author: "Particular Baptists", + description: "A historic Reformed Baptist confession of faith that aligns closely with the Westminster Confession but reflects Baptist distinctives.", + link: "https://www.the1689confession.com/", category: "Confessions" }, { @@ -110,7 +110,7 @@ const categories = Array.from(new Set(resources.map(resource => resource.categor ))} -
+ {/*

Suggest a Resource

Do you have a resource suggestion that would be valuable for readers of this blog? @@ -119,7 +119,7 @@ const categories = Array.from(new Set(resources.map(resource => resource.categor Contact -

+
*/} );