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

40 lines
1.1 KiB
HTML
Raw Normal View History

2023-11-10 01:00:49 +00:00
<!doctype html>
2023-11-11 22:41:09 +00:00
<html lang="es" xmlns:th="http://www.thymeleaf.org">
2023-11-10 01:00:49 +00:00
<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 22:41:09 +00:00
<nav th:replace="fragments/navbar :: nav"></nav>
2023-11-11 01:49:35 +00:00
<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>