fresh-main #8
File diff suppressed because it is too large
Load Diff
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue