jerguero/src/main/resources/templates/greeting.html

22 lines
677 B
HTML
Raw Normal View History

2023-11-07 02:37:43 +00:00
<!doctype html>
<html lang="es" xmlns:th="http://www.thymeleaf.org">
<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>
<div class="bg-teal-900 text-white rounded-xl p-4 m-4 shadow">
2023-11-08 10:58:27 +00:00
<p th:text="|Oh hi ${name}, thanks for checking in, i'm|"/>
2023-11-07 02:37:43 +00:00
<p class="bg-white text-teal-900 p-2 my-2 rounded-xl shadow-inner">
still a piece of garbage
</p>
</div>
</body>
</html>