jerguero/src/main/resources/templates/greeting.html
2023-11-08 05:58:27 -05:00

22 lines
677 B
HTML

<!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">
<p th:text="|Oh hi ${name}, thanks for checking in, i'm|"/>
<p class="bg-white text-teal-900 p-2 my-2 rounded-xl shadow-inner">
still a piece of garbage
</p>
</div>
</body>
</html>