apps-durpweb/index.html
2024-07-17 05:09:36 -05:00

14 lines
No EOL
442 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
</head>
<body>
<h1>Go and HTMX</h1>
<h2>{{.Message}}</h2>
<button hx-get="/time" hx-target="#time">Get Current Time</button>
<h2 id="time">Shows Current Time</h2>
</body>
</html>