hrender-examples/htmx/templates/pages/index.html

13 lines
383 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Lista de tareas</title>
<script src="https://cdn.jsdelivr.net/npm/htmx.org@2/dist/htmx.min.js"></script>
</head>
<body>
<div hx-get="/todo" hx-trigger="load" hx-swap="outerHTML">Cargando...</div>
</body>
</html>