diff --git a/src/components/PostCard.astro b/src/components/PostCard.astro index ebceb54..654adbb 100644 --- a/src/components/PostCard.astro +++ b/src/components/PostCard.astro @@ -10,15 +10,17 @@ const { title, description: blurb, pubDate } = post.data; const { slug } = post; --- -
-
+
+

{title}

-

+

{blurb || "No description available."}

diff --git a/src/components/ProjectCard.astro b/src/components/ProjectCard.astro index 27b2103..1700e78 100644 --- a/src/components/ProjectCard.astro +++ b/src/components/ProjectCard.astro @@ -11,7 +11,7 @@ const { project } = Astro.props; ---

{ ---
- {sortedProjects.map((project) => )} + { + sortedProjects.map((project) => ( +
+ +
+ )) + }
{ diff --git a/src/components/TalkCard.astro b/src/components/TalkCard.astro index e8d0c2e..3c4e0fd 100644 --- a/src/components/TalkCard.astro +++ b/src/components/TalkCard.astro @@ -10,16 +10,16 @@ const { talk } = Astro.props; ---
-
+

{talk.name}

-

+

{talk.description}

diff --git a/src/pages/posts.astro b/src/pages/posts.astro index dce7ac2..789edda 100644 --- a/src/pages/posts.astro +++ b/src/pages/posts.astro @@ -21,9 +21,25 @@ const sortedPosts = posts.sort( Posts

- {sortedPosts.map((post) => )} + { + sortedPosts.map((post) => ( +
+ +
+ )) + }
{ diff --git a/src/pages/resume.astro b/src/pages/resume.astro index 96169a5..4f7c9fe 100644 --- a/src/pages/resume.astro +++ b/src/pages/resume.astro @@ -141,7 +141,7 @@ if (!data) { data.summary && resumeConfig.sections.enabled.includes("summary") && (
-
+

{resumeConfig.sections.summary?.title || "Summary"} @@ -157,7 +157,7 @@ if (!data) { data.skills.length > 0 && resumeConfig.sections.enabled.includes("skills") && (
-
+

{resumeConfig.sections.skills?.title || "Skills"} @@ -180,7 +180,7 @@ if (!data) { data.experience.length > 0 && resumeConfig.sections.enabled.includes("experience") && (
-
+

{resumeConfig.sections.experience?.title || "Experience"} @@ -229,7 +229,7 @@ if (!data) { data.education.length > 0 && resumeConfig.sections.enabled.includes("education") && (
-
+

{resumeConfig.sections.education?.title || "Education"} @@ -271,7 +271,7 @@ if (!data) { data.volunteer.length > 0 && resumeConfig.sections.enabled.includes("volunteer") && (
-
+

{resumeConfig.sections.volunteer?.title || "Volunteer Work"} @@ -303,7 +303,7 @@ if (!data) { data.awards.length > 0 && resumeConfig.sections.enabled.includes("awards") && (
-
+

{resumeConfig.sections.awards?.title || "Awards & Recognition"} diff --git a/src/pages/talks.astro b/src/pages/talks.astro index 5701224..5f595e5 100644 --- a/src/pages/talks.astro +++ b/src/pages/talks.astro @@ -12,9 +12,25 @@ import { config } from "../config"; Talks

- {config.talks.map((talk) => )} + { + config.talks.map((talk) => ( +
+ +
+ )) + }
{