diff options
author | Carson Gross <carson@bigsky.software> | 2024-10-02 20:19:43 -0600 |
---|---|---|
committer | Carson Gross <carson@bigsky.software> | 2024-10-02 20:19:43 -0600 |
commit | d9b4ada06b61e0774cb17f8d6e1e80efb9752111 (patch) | |
tree | 0be63ae89304ca6df34112bda264a525afa14835 /www | |
parent | 1c4d378d03f86967cacdaef36c93fec1b52456b0 (diff) | |
download | htmx-d9b4ada06b61e0774cb17f8d6e1e80efb9752111.tar.gz htmx-d9b4ada06b61e0774cb17f8d6e1e80efb9752111.zip |
release prep
Diffstat (limited to 'www')
-rw-r--r-- | www/content/_index.md | 2 | ||||
-rw-r--r-- | www/content/docs.md | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/www/content/_index.md b/www/content/_index.md index 10f410bd..e9f718eb 100644 --- a/www/content/_index.md +++ b/www/content/_index.md @@ -119,7 +119,7 @@ By removing these constraints, htmx completes HTML as a [hypertext](https://en.w <h2>quick start</h2> ```html - <script src="https://unpkg.com/htmx.org@2.0.2"></script> + <script src="https://unpkg.com/htmx.org@2.0.3"></script> <!-- have a button POST a click via AJAX --> <button hx-post="/clicked" hx-swap="outerHTML"> Click Me diff --git a/www/content/docs.md b/www/content/docs.md index 4c443fab..f42dc773 100644 --- a/www/content/docs.md +++ b/www/content/docs.md @@ -121,13 +121,13 @@ The fastest way to get going with htmx is to load it via a CDN. You can simply a your head tag and get going: ```html -<script src="https://unpkg.com/htmx.org@2.0.2" integrity="sha384-Y7hw+L/jvKeWIRRkqWYfPcvVxHzVzn5REgzbawhxAuQGwX1XWe70vji+VSeHOThJ" crossorigin="anonymous"></script> +<script src="https://unpkg.com/htmx.org@2.0.3" integrity="sha384-TODO" crossorigin="anonymous"></script> ``` -An unminified version is also available for debugging as well: +An unminified version is also available as well: ```html -<script src="https://unpkg.com/htmx.org@2.0.2/dist/htmx.js" integrity="sha384-yZq+5izaUBKcRgFbxgkRYwpHhHHCpp5nseXp0MEQ1A4MTWVMnqkmcuFez8x5qfxr" crossorigin="anonymous"></script> +<script src="https://unpkg.com/htmx.org@2.0.3/dist/htmx.js" integrity="sha384-TODO" crossorigin="anonymous"></script> ``` While the CDN approach is extremely simple, you may want to consider |