mirror of
https://gitlab.durp.info/durfy/apps/durpweb.git
synced 2026-05-07 07:50:31 -05:00
23 lines
638 B
HTML
23 lines
638 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>
|
||
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
||
|
|
<title>{{.MainTitle}}</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="text-center">
|
||
|
|
{{ template "header" . }}
|
||
|
|
<button
|
||
|
|
class = "bg-blue-500 text-white py-2 px-3 my-5 rounded-lg"
|
||
|
|
hx-get="/catfact"
|
||
|
|
hx-target="#catfact"
|
||
|
|
hx-swap="outerHTML"
|
||
|
|
>Get a Cat Fact</button>
|
||
|
|
{{ template "CatFact" . }}
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|