diff options
Diffstat (limited to 'www/content/_index.md')
-rw-r--r-- | www/content/_index.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/www/content/_index.md b/www/content/_index.md index c6c42fc6..020f2897 100644 --- a/www/content/_index.md +++ b/www/content/_index.md @@ -91,12 +91,6 @@ if(window.location.search=="?ads=true") { </a> </div> -<div class="alert"> -<b>NEWS:</b> htmx 2.0 has been released! It is not currently marked as <a href="https://docs.npmjs.com/cli/v10/commands/npm-dist-tag#purpose"><code>latest</code></a> -in NPM so that people using the <a href="https://v1.htmx.org">1.x line</a> are not accidentally upgraded. We will mark -2.0 as <code>latest</code> at some point in 2025. -</div> - <h2>introduction</h2> htmx gives you access to [AJAX](@/docs.md#ajax), [CSS Transitions](@/docs.md#css_transitions), [WebSockets](@/docs.md#websockets-and-sse) and [Server Sent Events](@/docs.md#websockets-and-sse) @@ -120,7 +114,7 @@ By removing these constraints, htmx completes HTML as a [hypertext](https://en.w <h2>quick start</h2> ```html - <script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.5/dist/htmx.min.js"></script> + <script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.6/dist/htmx.min.js"></script> <!-- have a button POST a click via AJAX --> <button hx-post="/clicked" hx-swap="outerHTML"> Click Me |