-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 977 Bytes
/
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
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;1,100&display=swap"
rel="stylesheet">
<script src="https://unpkg.com/htmx.org@1.9.6"></script>
<link rel="stylesheet" href="/main.css"/>
</head>
<body>
<div class="app">
<aside>
<h1>Micro.</h1>
<img src="/hero.png" />
<button class="btn primary" hx-get="/posts/form/" hx-target="#main-view">Write</button>
</aside>
<main>
<input type="search" placeholder="Search..."
name="key"
hx-get="/search"
hx-trigger="keyup changed delay:500ms"
hx-target="#main-view" />
<div
hx-get="/posts"
hx-trigger="load"
hx-target="#main-view"
kx-on:htmx:timeout="alert('Failed to fetch posts')">
<div id="main-view"></div>
</div>
</main>
</div>
</body>
</html>