Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ const desktop = [
))
}
</ul>
<button aria-label="theme toggle" class="pointer theme-toggle ml-4">
<a aria-label="github" class="pointer ml-2 mr-4" href="https://github.com/santoshyadavdev/angular-snipptes" target="_blank">
<Icon name="simple-icons:github" class="w-6 dark:text-white text-black" />
</a>
<button aria-label="theme toggle" class="pointer theme-toggle">
<Icon name="eva:moon-outline" class="w-6 dark:text-white text-black transition-colors dark:hidden" />
<Icon name="akar-icons:sun" class="w-6 dark:text-white text-black transition-colors hidden dark:block" />
</button>
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/BlogLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ const canonicalURL = new URL(Astro.url).href;
<time datetime={frontmatter.pubDate} class="mb-3 sm:mb-0">
{thisDate}
</time>
<time datetime={frontmatter.contributedBy} class="mb-3 sm:mb-0">
<span class="mb-3 sm:mb-0">
{frontmatter.contributedBy}
</time>
</span>
</nav>
</header>
<article>
Expand Down