-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_prod.html
121 lines (115 loc) · 4.64 KB
/
index_prod.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
<!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>StackStudio</title>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/images/favicon/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="shortcut icon" href="/images/favicon/favicon.ico" type="image/x-icon" />
<script src="//cdnjs.cloudflare.com/ajax/libs/spin.js/1.2.7/spin.min.js"></script>
<!-- {%PROD -->
<link rel="stylesheet" type="text/css" href="css/main.css" />
<!-- %} -->
<!-- For local debug {%DEV >
<link rel="stylesheet/less" type="text/css" href="css/main.less" />
<! %} -->
<script type="text/javascript"></script>
<!-- {%PROD -->
<!-- %} -->
<!-- For local debug {%DEV >
<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>
</head>
<body class="container">
<!-- Header content -->
<div class="row">
<div>
<nav>
<a id="home_link" href="/"><img src="/images/TranscendLogos/StackStudioLogo_SML.png" height="40" width="160" alt="StackStudio"/></a>
<ul class="main">
<li><a href="/#resources">Cloud Management</a></li>
</ul>
<ul id="navLogin"></ul>
</nav>
</div>
</div>
<div style="clear:both"></div>
<div class="row" id="app_container">
<!-- Sidebar content -->
<section id="sidebar"></section>
<!-- Main content -->
<section id="main" class="twelvecol last">
<div id="loading_content"></div>
</section>
</div>
<footer class="row">
<p>
Copyright © 2012 - <a href="http://www.transcendcomputing.com">Transcend Computing</a>
</p>
</footer>
<br/>
<br/>
<script>
var opts = {
lines: 13, // The number of lines to draw
length: 20, // The length of each line
width: 10, // The line thickness
radius: 30, // The radius of the inner circle
corners: 1, // Corner roundness (0..1)
rotate: 0, // The rotation offset
direction: 1, // 1: clockwise, -1: counterclockwise
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: 'auto', // Top position relative to parent in px
left: 'auto' // Left position relative to parent in px
};
var target = document.getElementById('loading_content');
var spinner = new Spinner(opts).spin(target);
</script>
<!-- {%PROD -->
<script data-main="js/main.js" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.5/require.min.js
"></script>
<!-- %} -->
<!-- For local debug {%DEV >
<script data-main="js/main.js" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.5/require.min.js
"></script>
<! %} -->
<!--
<section id="console_area" class="row">
<div id="command_area">
<div id="cloud_console"></div>
<div id="cloud_cmd_wrap" class="terminal"><div id="cloud_cmd"></div></div>
</div>
<div id="console_controls"><button id="con_options">Options</button>
<ul id="con_menu">
<li><a class="con_clear" href="#">Clear</a></li>
<li>
<a href="#">Send Commands To...</a>
<ul>
<li><a class="export_to" href="#">Cloud Formation Template</a></li>
<li><a class="export_to" href="#">Ruby Cloud Template</a></li>
<li><a class="export_to" href="#">Java Cloud Template</a></li>
</ul>
</li>
</ul>
<button id="con_expand">Expand</button></div>
</section>
-->
<script type="text/html" id="alert">
<div class="{{ type }} message">
<h3>{{ title }}</h3>
<p>{{ message }}</p>
</div>
</script>
</body>
</html>