-
Notifications
You must be signed in to change notification settings - Fork 0
/
stackplace.html
114 lines (110 loc) · 4.68 KB
/
stackplace.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
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>StackPlace</title>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet/less" type="text/css" href="css/main.less" />
<!-- {%PROD
<link rel="stylesheet" type="text/css" href="css/main.css" />
%} -->
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css" />
<script type="text/javascript"></script>
<script src="js/vendor/less-1.3.1.min.js" type="text/javascript"></script>
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
<script src="js/plugins.js"></script>
<!-- For local debug %{DEV -->
<script>var DEBUG=true;</script>
<script data-main="js/main.js" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.5/require.min.js
"></script>
<!-- For local debug }% -->
<!-- For production -->
<!-- %{PROD
<script data-main="js/stackplace-all.min.js" src="js/vendor/require-2.1.2.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
%} -->
</head>
<body class="container">
<!-- Header content -->
<div class="row">
<div>
<nav>
<a href="/"><img src="/images/TranscendLogos/StackPlace_NoLogo_SML.png" height="40" width="160" alt="StackPlace"/></a>
<ul class="account">
<li><a href="#account/login">Login</a></li>
</ul>
</nav>
</div>
</div>
<div style="clear:both"></div>
<div class="row" id="app_container">
<!-- Sidebar content -->
<section id="sidebar" class="col-lg-3"></section>
<!-- Main content -->
<section id="main" class="col-lg-9 last">
<div id="loading_content"></div>
<h3>Loading....</h3>
</section>
</div>
<footer class="row">
<p>
Copyright © 2012-2013 - <a href="http://www.transcendcomputing.com">Transcend Computing</a>
</p>
</footer>
<br/>
<br/>
</body>
<script>
console.log("window.app set.");
window.app = "stackplace";
require(['./common'], function(common) {
console.log("We now have 'common' functionality.");
require([
'jquery',
'spinner'
], function( $, Spinner ) {
var opts = {
lines: 13, // The number of lines to draw
length: 7, // The length of each line
width: 4, // The line thickness
radius: 10, // The radius of the inner circle
corners: 1, // Corner roundness (0..1)
rotate: 0, // The rotation offset
color: '#000', // #rgb or #rrggbb
speed: 1, // Rounds per second
trail: 60, // Afterglow percentage
shadow: false, // Whether to render a shadow
hwaccel: false, // Whether to use hardware acceleration
className: 'spinner', // The CSS class to assign to the spinner
zIndex: 2e9, // The z-index (defaults to 2000000000)
top: 0, // Top position relative to parent in px
left: -75 // Left position relative to parent in px
};
var target = document.getElementById('loading_content');
console.log(target);
var spinner = new Spinner(opts).spin(target);
});
});
</script>
<script type="text/html">
<div id="project_edit">
<button class="info" title="Press 'Ctrl-Space' inside editor to open autocomplete input."></button>
<div id="tabs" class="col-lg-12">
<ul>
<li><a href="#tabs_design">NewTemplate</a></li>
</ul>
<div id="tabs_design">
<div id="editor_content">
<div id="design_editor">
</div>
</div>
</div>
</div>
</div>
</script>
</html>