26 lines
No EOL
637 B
HTML
26 lines
No EOL
637 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title id="page-title">HTMX Demos</title>
|
|
<script src="htmx-1-9-12.min.js"></script>
|
|
<link rel="stylesheet" href="styles.css"/>
|
|
</head>
|
|
<body>
|
|
<h1 id="title">Demo</h1>
|
|
<h2>hx-trigger: <code>^L</code> keyboard shortcut</h2>
|
|
|
|
<nav hx-get="/autonum/nav" hx-trigger="load"></nav>
|
|
|
|
<div id="main">
|
|
<div class="list"></div>
|
|
<button
|
|
hx-post="/contacts"
|
|
hx-target="#main .list"
|
|
hx-swap="innerHTML"
|
|
hx-trigger="click,keyup[ctrlKey && key == 'l'] from:body">
|
|
Contacts
|
|
</button>
|
|
</div>
|
|
</body>
|
|
</html> |