Recount-Server/web/templates/index.html

27 lines
716 B
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 20:50:41 -08:00
<div>
</div>
<h1>Hello World!</h1>
<button hx-get="/hello" hx-trigger="click" hx-target="#hello" hx-swap="outerHtml">Hello you!</button>
<div id="hello">
</div>
<script type="module" src="/static/index.js"></script>
<script type="module">
import {say_hello} from "/static/index.js";
say_hello();
</script>
</body>
</html>