34 lines
1 KiB
HTML
34 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/static/site.css">
|
|
<script src="/static/htmx.min.js"></script>
|
|
<title>{{.Title}}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<button class="title" href="/">Recount!</button>
|
|
<ul>
|
|
<li><button hx-boost="true" class="active" href="/home">Home!</button></li>
|
|
<li><button href="/nohome">Not home!</button></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<div id="main-body-content">
|
|
<h1>Hello World!</h1>
|
|
<button hx-get="/hello" hx-trigger="click" hx-target="#hello" hx-swap="outerHtml">Hello you!</button>
|
|
|
|
<div id="hello">
|
|
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/static/index.js"></script>
|
|
<script type="module">
|
|
import {say_hello} from "/static/index.js";
|
|
say_hello();
|
|
</script>
|
|
</body>
|
|
</html>
|