-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (45 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Startalk Showcase</title>
<link href="bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" />
<link href="style.css" rel="stylesheet" />
<link href="startalk.png" rel="icon" />
</head>
<body>
<div id="header">
<h1 id="title">STARTALK Project Showcase</h1>
<div id="toggle-container">
<span>Show: </span>
<div id="toggle" class="btn-group" role="group">
<input type="radio" class="btn-check" name="toggle-state" id="toggle-all" autocomplete="off" checked disabled>
<label class="btn btn-outline-primary" for="toggle-all">All Projects</label>
<input type="radio" class="btn-check" name="toggle-state" id="toggle-web" autocomplete="off" disabled>
<label class="btn btn-outline-primary" for="toggle-web">Web Design</label>
<input type="radio" class="btn-check" name="toggle-state" id="toggle-data" autocomplete="off" disabled>
<label class="btn btn-outline-primary" for="toggle-data">Data Science</label>
</div>
</div>
<br />
<a class="btn btn-outline-primary" href="https://blender-startalk.mikeylab.com">Blender Showcase</a>
</div>
<div id="showcase-container">
Loading...
</div>
<div id="footer">
<a target="_blank" href="/qr.html">QR Code</a>
|
<a target="_blank" href="https://github.com/hieyou1/startalk-showcase">GitHub</a>
|
<a target="_blank" href="https://github.com/hieyou1/startalk-showcase/blob/main/LICENSE.md">License</a>
|
<a target="_blank" href="https://github.com/hieyou1/startalk-showcase/blob/main/README.md">README</a>
|
<a target="_blank" href="https://mikeylab.com">MikeyLab</a>
</div>
<script src="bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"></script>
<script src="script.js"></script>
</body>
</html>