This repository was archived by the owner on Jun 3, 2022. It is now read-only.
generated from aidenybai/sheesh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (46 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/png"
href="https://i0.wp.com/chsmstmagnet.com/wp-content/uploads/2017/09/cropped-magnetlogoofficialrevised.png?fit=512%2C512&ssl=1"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MST Magnet Research Catalog</title>
</head>
<body>
<h1><b>MST Magnet Research Catalog</b></h1>
<p>
Listed below is a catalog of completed research projects by the students of <a href="https://chsmstmagnet.com/" target="_blank">MST Magnet</a> in <a href="https://chs.camas.wednet.edu/" target="_blank">Camas High</a>.
</p>
<div id="app">
<input l-model="query" type="text" placeholder="Search..." />
<div
l-for="entry in catalog.filter((entry) => entry.toLowerCase().includes(query.toLowerCase())).reverse()"
>
<details
:style="{ display: this.entry ? 'block' : 'none' }"
class="fade-in"
l-html="this.entry"
style="display: none"
></details>
<p :style="{ display: catalog.length > 0 ? 'none' : 'block' }">⌛ Loading...</p>
</div>
</div>
<p>
<hr>
<small>
Find an issue with the website?
<a href="mailto:[email protected]"> Contact Aiden Bai</a>
</small>
<br />
<small>
Is your project not here?
<a href="https://forms.gle/SW3qHgzR3ZBBKE3A6">📝 Submit it</a>
</small>
</p>
<script src="./src/main.ts" type="module"></script>
</body>
</html>