-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.99 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="twa.css">
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script src="https://unpkg.com/[email protected]"></script>
<title>not-wordle-just-github</title>
<!-- Fathom - beautiful, simple website analytics -->
<script src="https://cdn.usefathom.com/script.js" data-site="BMMKWEGS" defer></script>
<!-- / Fathom -->
</head>
<body>
<header>
<h1>not-wordle-just-github</h1>
<p>
Generate a <a href="https://www.powerlanguage.co.uk/wordle/" target="_blank">Wordle</a> grid, but of your GitHub contributions.
</p>
</header>
<main>
<p>
<label>Enter your GitHub username:</label><br />
<input
type="search"
class="form-control form-control-lg"
id="githubUsername"
name="username"
hx-get="/api"
hx-include="[name='username']"
hx-trigger="keyup changed delay:500ms"
hx-target="#search-results"
hx-indicator=".htmx-indicator"
/>
</p>
<span id="search-results"></span>
<span class="htmx-indicator">Loading...</span>
</main>
<footer>
<nav>
<a href="https://github.com/djpeacher/not-wordle-just-github" target="_blank">GitHub</a>
</nav>
<p>
Made with <i class="twa twa-red-heart"></i> by
<a href="https://www.djpeacher.com" target="_blank">Jonathan Peacher</a>
</p>
<p>
Inspired by <a href="https://twitter.com/iamdevloper/status/1487106952261943297?s=20&t=vRaN_v9sXqLk782D2fiBmg" target="_blank">@iamdevloper</a>
</p>
<p>
Github API by <a href="https://twitter.com/sallar" target="_blank">@sallar</a>
</p>
</footer>
</body>
</html>