apps-durpweb/view/index.html

25 lines
670 B
HTML
Raw Normal View History

2024-07-28 10:55:55 -05:00
{{ define "index" }}
2024-07-28 09:40:32 -05:00
<!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>
2024-07-28 10:55:55 -05:00
{{ end }}