jerguero/src/main/resources/templates/views/index.html

42 lines
1.2 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 -->
2023-12-03 12:54:10 +00:00
<link th:href="|/main.css?t=${time}|" 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>
2023-12-03 12:54:10 +00:00
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Vina+Sans&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>
2023-12-03 12:54:10 +00:00
<div th:replace="fragments/definition"></div>
2023-11-10 01:00:49 +00:00
<!-- htmx -->
<script src="https://unpkg.com/htmx.org@1.9.8/dist/htmx.min.js"></script>
</body>
</html>