forked from chilipeppr/workspace-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made some changes to ChiliPeppr myWorkspace using Cloud9
- Loading branch information
Showing
1 changed file
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<!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-bastianf2" 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 - bastianf2 | ||
|
||
<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="drop-test-instance"> | ||
<p class="sample">drop test goes here</p> | ||
</div> | ||
|
||
<div id="mywidget1-instance"> | ||
<p class="sample">Widget 1 goes here</p> | ||
</div> | ||
|
||
<div id="com-senscape-widget-bootloader-instance"> | ||
<p class="sample">Senscape Bootloader Widget 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="com-chilipeppr-luaeditor-instance"> | ||
<p class="sample" style="min-height:200px;">Lua Editor goes here 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> |