-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
64 lines (63 loc) · 2.08 KB
/
index.hbs
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
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Desktop VR Dev Server Example Apps</title>
<link rel="icon" type="image/png" sizes="32x32" href="https://desktop.vision/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://desktop.vision/favicon/favicon-16x16.png">
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
<style>
body.dark {
--bg-color: #000;
--color-primary: #57fff2;
--bg-secondary-color: #131316;
--font-color: #f5f5f5;
--color-grey: #ccc;
--color-darkGrey: #777;
}
img {
width: 100$;
max-width: 300px;
}
ul {
list-style: none;
}
.flex {
display: flex;
flex-direction: column;
margin: 5vh auto;
}
</style>
</head>
<body class="dark">
<nav class="nav">
<div class="nav-left">
<a class="brand text-white" href="/">Desktop Vision</a>
</div>
<div class="nav-right">
<a href="https://desktop.vision/app" target="__blank" class="button outline primary">Launch Desktop Vision</a>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col text-center">
<h2><a href="https://github.com/Desktop-Vision/desktop-vision-vr-dev-server" target="__blank">VR Dev Server</a></h2>
<h2>Example Apps</h2>
<ul>
{{#each pages}}
<li class="flex">
<a href="{{this.path}}" class="flex">
<img src="{{this.thumbnail}}" alt="{{this.title}}">
</a>
<a href="{{this.path}}">{{this.title}}</a>
<a href="https://github.com/Desktop-Vision/desktop-vision-vr-dev-server-example-apps/tree/main{{path}}" target="__blank">Source Code</a>
</li>
{{/each}}
</ul>
</div>
</div>
</div>
</body>
</html>