fixes: fix dark scheme & port from legacy blog

My old blog only ever had 1 post, but its a good place to start.
This commit is contained in:
Timothy DeHerrera
2022-12-09 12:11:14 -07:00
parent 3d0a796a8d
commit a3a6f8ee3d
28 changed files with 3589 additions and 3626 deletions

View File

@@ -18,7 +18,7 @@ const { content } = Astro.props
</div>
<h1 class="post__title">{ content.title }</h1>
<h5 class="post__desc">
<a class="post__author" href={`https://twitter.com/${content.authorTwitter}`} title={`${content.author + "'s"} twitter`} target="_blank" rel="external">{ content.author }</a> |
<a class="post__author" href={`https://github.com/${content.authorGitHub}`} title={`${content.author + "'s"} GitHub`} target="_blank" rel="external">{ content.author }</a> |
<span class="post__date">{ new Intl.DateTimeFormat('en-US', { dateStyle: 'full' }).format(new Date(content.date))}</span>
</h5>
</div>