Skip to content

Commit

Permalink
added description to blog posts
Browse files Browse the repository at this point in the history
  • Loading branch information
bliutech committed May 14, 2023
1 parent 8e0205e commit 82de5d4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pages/blog/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ export default function Post({ postData }: { postData: PostData }) {
<i>Written by {postData.authors.join(", ")}</i>
</p>
<p className={styles.tags}>Tags: {postData.tags.join(", ")}</p>
<p>
<i>{postData.description}</i>
</p>
<hr />
<div className={styles.postContent}>
<div dangerouslySetInnerHTML={{ __html: postData.contentHtml }} />
</div>
Expand Down

0 comments on commit 82de5d4

Please sign in to comment.