jerguero/src/main/resources/static/index.html

30 lines
696 B
HTML
Raw Normal View History

2023-11-10 01:00:49 +00:00
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jerguero</title>
<!-- tailwind -->
<link href="/main.css" rel="stylesheet">
</head>
<body>
<h1 class="text-4xl font-bold">
Jerguero D:
</h1>
<button
class="bg-c-on-bg text-c-bg py-2 px-4 rounded-xl shadow"
hx-get="/sampuru"
hx-swap="innerHTML"
>
carita feliz :D
</button>
<!-- htmx -->
<script src="https://unpkg.com/htmx.org@1.9.8/dist/htmx.min.js"></script>
</body>
</html>