Skip to content
Draft
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<p align="center">🎉 <strong>Oatcake 1.0 released!</strong> 🎉 Read the <a href="">blog post</a>.</p>

[![NPM Version](https://img.shields.io/npm/v/oatcake)](https://www.npmjs.com/package/oatcake)
[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/oatcake/badge)](https://www.jsdelivr.com/package/npm/oatcake)

Expand Down
18 changes: 17 additions & 1 deletion site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
}
.banner {
border: none;
margin-top: calc(3 * var(--ok-line-height));
margin-top: calc(4 * var(--ok-line-height));
}
</style>
<link
Expand Down Expand Up @@ -131,6 +131,22 @@
<main
style="max-width: 40em; margin: 0 auto 0 auto; padding: 0 0.5em 0 0.5em"
>
<aside
style="
text-align: center;
background-color: #ffdc00;
border-color: #b10dc9;
border-style: dashed;
width: 23em;
margin-left: auto;
margin-right: auto;
margin-top: var(--ok-line-height);
"
>
🎉 <strong>Oatcake 1.0 released!</strong> 🎉 Read the
<a href="">blog post</a>.

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The link to the blog post has an empty href attribute. This creates a non-functional link that will either do nothing or navigate to the current page when clicked. Please provide the actual URL to the blog post before releasing this banner.

Suggested change
<a href="">blog post</a>.
<a href="https://seanh.cc/2024/06/01/oatcake-1-0-released/">blog post</a>.

Copilot uses AI. Check for mistakes.
</aside>

<img
alt="Oatcake banner image"
src="media/oatcake.svg"
Expand Down