We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7f97f commit 9c77ed8Copy full SHA for 9c77ed8
src/layouts/PostDetails.astro
@@ -96,6 +96,13 @@ const nextPost =
96
<Content />
97
</article>
98
99
+<!-- Author Section -->
100
+{author && (
101
+ <div class="mt-16 border-t border-skin-border pt-8 text-center">
102
+ <div class="text-lg text-skin-muted">Written by</div>
103
+ <div class="text-2xl font-semibold text-skin-base mt-1">{author}</div>
104
+ </div>
105
+)}
106
<ul class="my-8">
107
{tags.map((tag) => <Tag tag={slugifyStr(tag)} />)}
108
</ul>
0 commit comments