Recount-Server/web/templates/index.html

35 lines
1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-01-12 20:50:41 -08:00
<link rel="stylesheet" href="/static/site.css">
<script src="/static/htmx.min.js"></script>
<title>{{.Title}}</title>
</head>
<body>
2024-01-12 21:59:19 -08:00
<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>
2024-01-12 20:50:41 -08:00
2024-01-12 21:59:19 -08:00
<div id="hello">
2024-01-12 20:50:41 -08:00
2024-01-12 21:59:19 -08:00
</div>
2024-01-12 20:50:41 -08:00
</div>
<script type="module" src="/static/index.js"></script>
<script type="module">
import {say_hello} from "/static/index.js";
say_hello();
</script>
</body>
</html>