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

48 lines
1.5 KiB
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">
2023-11-11 01:49:35 +00:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
2023-11-10 01:00:49 +00:00
</head>
<body>
2023-11-11 01:49:35 +00:00
<nav class="px-2 pt-2 pb-4 border-b-2 border-c-chicha-green">
<h1 class="text-4xl font-bold font-chicha">
<span class="text-c-chicha-green">
J</span><span class="text-c-chicha-orange">e</span><span class="text-c-chicha-pink">r</span><span
class="text-c-chicha-yellow">g</span><span class="text-c-chicha-green">u</span><span
class="text-c-chicha-orange">e</span><span class="text-c-chicha-pink">r</span><span
class="text-c-chicha-yellow">o</span>
</h1>
</nav>
<button
class="font-chicha bg-c-chicha-yellow text-c-bg px-2 py-2 rounded text-xl"
>
<a href="/crear">
Crear post
</a>
</button>
2023-11-10 01:00:49 +00:00
<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>