-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (54 loc) · 1.75 KB
/
index.html
File metadata and controls
60 lines (54 loc) · 1.75 KB
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
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Just-in-Time Learning</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Just-in-Time Learning</h1>
<p class="subtitle">Curious. Simplicity ⟹ Reliability. V ↑ → Q ↓</p>
<nav>
<a href="/">Home</a>
<a href="about.html">About</a>
<a href="aihub.html">Resources</a>
</nav>
</div>
</header>
<main class="container">
<div class="search-container">
<input type="text" id="search-input" class="search-input" placeholder="Search posts..." aria-label="Search posts">
<span class="search-icon">🔍</span>
<button type="button" class="search-clear" aria-label="Clear search">✕</button>
</div>
<div class="tag-filter">
<div class="tag-header">
<h2>Filter by tag</h2>
<button id="toggle-tags" aria-label="Toggle tags visibility">
<span class="chevron">›</span>
</button>
</div>
<div id="tags-container" class="collapsed">
<div id="tags"></div>
<button id="show-all-btn">Show All</button>
</div>
</div>
<div class="timeline-filter">
<div id="timeline-strip"></div>
</div>
<div class="posts">
<h2>All Posts</h2>
<div id="posts-list"></div>
</div>
</main>
<footer>
<div class="container">
<p>Created with <a href="https://github.com/ai-mindset/init.vim">Neovim</a>, using <a href="https://ai-mindset.github.io/posts/dialogue-engineering.html">AI</a> to help process and curate content ✨</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>