fresh-main #8

Merged
argonaut merged 4 commits from fresh-main into main 2025-04-27 03:16:39 +00:00
2 changed files with 891 additions and 230 deletions
Showing only changes of commit d4f75d324e - Show all commits

File diff suppressed because it is too large Load Diff

View File

@ -164,6 +164,7 @@ const { Content } = await post.render();
<h3>Author</h3> <h3>Author</h3>
<div class="author-card"> <div class="author-card">
<div class="author-name">{post.data.author}</div> <div class="author-name">{post.data.author}</div>
{/* Add more author details if needed */}
</div> </div>
</div> </div>
)} )}
@ -174,8 +175,8 @@ const { Content } = await post.render();
title={post.data.title} title={post.data.title}
tags={post.data.tags || []} tags={post.data.tags || []}
category={post.data.category || "Uncategorized"} category={post.data.category || "Uncategorized"}
relatedPosts={combinedRelatedPosts}
allPosts={allPosts} allPosts={allPosts}
content={""} {/* Pass empty string for content */}
/> />
</div> </div>
@ -329,7 +330,7 @@ const { Content } = await post.render();
} }
.knowledge-graph-section { .knowledge-graph-section {
padding: 1rem; padding: 1rem; /* Adjusted padding */
} }
.tags { .tags {
@ -380,6 +381,7 @@ const { Content } = await post.render();
/* Author Card */ /* Author Card */
.author-card { .author-card {
/* Simplified author card for this example */
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;