-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
195 lines (144 loc) · 5.34 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width" />
<title> Stackato Environment Variables :: Phani Raju</title>
<!-- Included CSS Files (Uncompressed) -->
<!--
<link rel="stylesheet" href="stylesheets/foundation.css">
-->
<!-- Included CSS Files (Compressed) -->
<link rel="stylesheet" href="stylesheets/foundation.min.css">
<link rel="stylesheet" href="stylesheets/app.css">
<script src="javascripts/modernizr.foundation.js"></script>
<!-- IE Fix for HTML5 Tags -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
p { word-break: break-all; }
.keyheader { border-bottom: 4px solid #238bde;}
body{
}
</style>
</head>
<body>
<!-- Header and Nav -->
<nav class="top-bar">
<ul>
<!-- Title Area -->
<li class="name">
<h1>
<a href="#" >
<span style="color: #c5e5ef">[ Stackato ]</span> CI System Environment Variables
</a>
</h1>
</li>
<li class="toggle-nav"><a href="#system-info">CI Deployment Target Failed System Information</a></li>
</ul>
</nav>
<!-- End Header and Nav -->
<!-- Main Grid Section -->
<div class="row display">
<div class="three columns keyheader panel"><h5>Key</h5></div>
<div class="eight columns offset-by-one keyheader panel"><h5>Value </h5></div>
</div>
<br/>
{{#env}}
<div class="row display">
<div class="three columns" > <p><b>{{key}}</b></p></div>
<div class="eight columns offset-by-one" style="border-left: 2px solid #ccc"><p class="values"> {{{value}}} </p></div>
</div>
<br/>
{{/env}}
<div class="row display"><a name="system-info"></a>
<div class="ten columns" > <h4>System Information</h4></div>
<div class="two columns" > <a href="#top"> back to top </a></div>
</div>
{{#sys}}
<div class="row display">
<div class="three columns" > <p><b>{{0}}</b></p></div>
<div class="eight columns offset-by-one" style="border-left: 2px solid #ccc"><p class="values"> {{{1}}} </p></div>
</div>
{{/sys}}
<!-- End Grid Section -->
<!-- Footer -->
<footer class="row">
<div class="twelve columns">
<hr />
<div class="row">
<div class="six columns">
<p>ActiveState Software Inc.</p>
</div>
<div class="six columns">
<ul class="link-list right">
<li><a href="http://stackato.com">Stackato</a></li>
<li><a href="https://github.com/Stackato-Apps/node-env">Github</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Included JS Files (Uncompressed) -->
<!--
<script src="javascripts/jquery.js"></script>
<script src="javascripts/jquery.foundation.mediaQueryToggle.js"></script>
<script src="javascripts/jquery.foundation.forms.js"></script>
<script src="javascripts/jquery.foundation.reveal.js"></script>
<script src="javascripts/jquery.foundation.orbit.js"></script>
<script src="javascripts/jquery.foundation.navigation.js"></script>
<script src="javascripts/jquery.foundation.buttons.js"></script>
<script src="javascripts/jquery.foundation.tabs.js"></script>
<script src="javascripts/jquery.foundation.tooltips.js"></script>
<script src="javascripts/jquery.foundation.accordion.js"></script>
<script src="javascripts/jquery.placeholder.js"></script>
<script src="javascripts/jquery.foundation.alerts.js"></script>
<script src="javascripts/jquery.foundation.topbar.js"></script>
-->
<!-- Included JS Files (Compressed) -->
<script src="javascripts/jquery.js"></script>
<script src="javascripts/foundation.min.js"></script>
<!-- Initialize JS Plugins -->
<script src="javascripts/app.js"></script>
<script>
// http://www.binpress.com/app/anchorscroll/228
(function($){
$.fn.anchorscroll = function(param) {
// Params
var defaults = {
speed: 1500,
easing: 'swing',
before: 10
};
var param = $.extend(defaults, param);
// Engine
return this.each(function() {
$(this).click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({
scrollTop: targetOffset - param.before
}, param.speed, param.easing);
return false;
}
}
});
});
};
})(jQuery);
$(function(){
$("a[href*=#]").anchorscroll() //this is basic setup
});
</script>
</body>
</html>