-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/[email protected]"></script>
<!-- <script src="https://unpkg.com/[email protected]"></script> -->
<!-- <script src="https://unpkg.com/htmx.org/dist/ext/json-enc.js"></script> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" />
<title>Fancy</title>
</head>
<body>
<header class="container">
<hgroup>
<h1>fancy</h1>
</hgroup>
</header>
<main class="container">
<form>
<label for="restaurant">Fancy</label>
<input
id="restaurant"
name="restaurant"
type="text"
aria-label="Add New Restaurant"
placeholder="Add Fancy restaurant"
/>
<button type="submit">Add Restaurant</button>
</form>
<section id="restaurants" hx-get="/restaurants" hx-trigger="load"></section>
<!-- <section id="restaurants"> -->
<!-- This is where our restaurants list will be listed -->
</section>
</main>
</body>
</html>