nova-rebolaxe/web/templates/index.tmpl

30 lines
900 B
Cheetah
Raw Normal View History

2023-12-04 16:59:57 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ .title }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
/>
<link href="css/vanilligram.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/htmx.min.js"></script>
</head>
<body>
<section class="container">
<h1>Buscador</h1>
<input type="text" name="busqueda"
hx-post="/buscador"
hx-trigger="keyup changed delay:200ms"
hx-target="#search-results"
placeholder="Busca..."
>
<div id="search-results"></div>
</section>
</body>
</html>