-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
82 lines (82 loc) · 3.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
Opendesk On Demand
</title>
<link rel="stylesheet" href="/vendor/bootstrap.min.css" />
<link rel="stylesheet" href="/vendor/highlight.css" />
<script src="/vendor/jquery.js"></script>
<!--script src="/vendor/bootstrap.js"></script-->
<script src="/vendor/underscore.js"></script>
<script src="/vendor/backbone.js"></script>
<script src="/vendor/handlebars.js"></script>
<script src="/vendor/highlight.js"></script>
<script src="/vendor/three/three.js"></script>
<script src="/vendor/three/orbital.js"></script>
<script src="/vendor/three/obj_loader.js"></script>
<script src="/vendor/three/stl_loader.js"></script>
</head>
<body>
<div class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Opendesk On Demand</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li data-active-when-example="desk_length">
<a href="/demo.html?example=desk_length">
v1 Inventor Desk</a>
</li>
<li data-active-when-example="lift_desk">
<a href="/demo.html?example=lift_desk">
v1 Inventor Lift</a>
</li>
<li data-active-when-example="box_height">
<a href="/demo.html?example=box_height">
v1 Inventor Box</a>
</li>
<li data-active-when-example="box-v4">
<a href="/demo.html?example=box-v4">
v2 Fusion Box</a>
</li>
<li data-active-when-example="express-desk-james-v2">
<a href="/demo.html?example=express-desk-james-v2">
v2 Fusion Desk</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron">
<h2>
Opendesk On Demand
</h2>
<p>
These demos illustrate in-browser customisation that's integrated with
the Opendesk design publishing and distributed manufacturing flow.
For technical information see the
<a href="https://github.com/opendesk/opendesk-on-demand/blob/master/README.md">
README</a>
and
<a href="https://opendesk.github.io/winnow">
Winnow documentation</a>.
</p>
<p>
<a class="btn btn-lg btn-primary"
href="/demo.html?example=desk_length" role="button">
View desk example »</a>
</p>
</div>
</div>
</body>
</html>