mirror of
https://gitlab.durp.info/durfy/apps/durpweb.git
synced 2026-05-07 07:50:31 -05:00
14 lines
442 B
HTML
14 lines
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>
|