-
Notifications
You must be signed in to change notification settings - Fork 230
/
workspace.html
136 lines (102 loc) · 5.05 KB
/
workspace.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>
<!--(auto-fill by runme.js-->
</title>
<!-- ChiliPeppr is based on bootstrap CSS. -->
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Customized version of require.js for ChiliPeppr. Please see require.js docs for how
ChiliPeppr's dependency system works as it's based on require.js. -->
<script type='text/javascript' src="//i2dcui.appspot.com/js/require.js"></script>
<!-- widget.css DON'T REMOVE -->
<style type='text/css'>
/* widget.css will get inlined here by runme.js. don't remove this comment or inlining will fail. */
</style>
<link rel="stylesheet" type="text/css" href="workspace.css">
<!-- DON'T REMOVE end widget.css -->
<!-- widget.js DON'T REMOVE -->
<script type='text/javascript'>
//<![CDATA[
/* widget.js will get inlined here by runme.js. don't remove this comment or inlining will fail. */
//]]>
</script>
<script type='text/javascript' src="workspace.js"></script>
<!-- DON'T REMOVE end widget.js -->
</head>
<body>
<div id="com-chilipeppr-widget-flash-instance"></div>
<div id="com-chilipeppr-workspace-sample" class="xhidden">
<div class="container-fluid">
<div class="row">
<!-- Left Column -->
<!-- Change the width by adjusting col-md-4 to be col-md-3 for skinnier, or col-md-5 for wider -->
<!-- You must have all columns add up to 12 since we use bootstrap's col-md technique, i.e. col-md-2, col-md-7, col-md-3 adds to 12 -->
<div class="col-md-4 col-pad10">
<div class="com-chilipeppr-ws-hdr well">
Workspace - Sample
<div class="com-chilipeppr-ws-menu pull-right">
<div class="btn-group">
<div class="dropdown">
<button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
<ul class="dropdown-menu dropdown-menu-ws xdropdown-menu-right" role="menu">
<li class="com-chilipeppr-ws-menu-billboard" style="width:350px;">
<!-- Billboard -->
<div class="com-chilipeppr-ws-billboard">
</div>
<!-- End Billboard -->
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="mywidget1-instance">
<p class="sample">Widget 1 goes here</p>
</div>
<div id="com-chilipeppr-widget-template-instance">
<p class="sample">Template Widget goes here</p>
</div>
<div id="com-chilipeppr-widget-spconsole-instance">
Serial Port Console goes here.
</div>
</div>
<!-- Center Column -->
<div class="col-md-5 col-pad10">
<div id="mywidget2-instance">
<p class="sample" style="min-height:200px;">Widget 2 goes here</p>
</div>
</div>
<!-- Right Column -->
<div class="col-md-3 col-pad10">
<div id="com-chilipeppr-widget-serialport-instance">
Widget 3 goes here
</div>
<div id="mywidget3-instance">
<p class="sample">Widget 3 goes here</p>
</div>
</div>
</div>
</div>
</div>
<!-- Keep this div hidden so it can be cloned and used by the Javascript -->
<div id="com-chilipeppr-workspace-sample-billboard" class="hidden">
<div class="billboard-content">
<h4 class="billboard-title" style="">Sample Workspace</h4>
<p class="billboard-url" style=""><a href="http://chilipeppr.com/sample">chilipeppr.com/sample</a>
</p>
<div class="billboard-imgcontain" style="">
<a href="http://chilipeppr.com/sample">
<div class="billboard-img" style="background-image: url('https://github.com/chilipeppr/workspace-sample/raw/master/billboard.png')" />
</a>
<div class="billboard-stats2">
</div>
</div>
<p class="billboard-desc">
A ChiliPeppr Workspace that lets you do stuff.
</p>
</div>
</div>
</body>
</html>