-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
129 lines (102 loc) · 4.09 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Projector</title>
<meta name="description" content="A Bootstrap styled, Markdown powered, Server-side language agnostic, database-less project / mockup presentation engine.">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/bootstrap-responsive.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<script src="assets/js/vendor/modernizr-2.6.1-respond-1.1.0.min.js"></script>
<script src="assets/js/showdown.js"></script>
<script src="http://use.edgefonts.net/kaushan-script.js"></script>
<script type="text/javascript">
/* CONFIGURATION */
var project_path = 'project/'; // change if you want to use different path than the default one
var relative_mode = true; // change to false if you want to use URLs (external locations) instead of page names
</script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<div id="loader"></div>
<div class="container">
<div id="projector">
<div id="projector-loader"></div>
<div id="projector-container">
<h1 id="logo"></h1>
<br/>
<ul class="nav nav-tabs">
<li class="active"><a id="high-tab" href="#high-priority" data-toggle="tab">High Priority</a></li>
<li><a id="medium-tab" href="#medium-priority" data-toggle="tab">Medium Priority</a></li>
<li><a id="low-tab" href="#low-priority" data-toggle="tab">Low Priority</a></li>
</ul>
<div class="tab-content projects">
<div class="tab-pane active" id="high-priority">
<table class="table table-striped">
<thead>
<tr>
<th>Page</th>
<th>Status</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="tab-pane" id="medium-priority">
<table class="table table-striped">
<thead>
<tr>
<th>Page</th>
<th>Status</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="tab-pane" id="low-priority">
<table class="table table-striped">
<thead>
<tr>
<th>Page</th>
<th>Status</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="progress">
<div class="bar bar-danger" style=""></div>
<div class="bar bar-warning" style=""></div>
<div class="bar bar-info" style=""></div>
</div>
<div><span class="label">Compatibility</span> <span id="compatibility"></span></div>
<hr>
<footer>
<p>Have no fear, <a href="http://goo.gl/CU4xF">Projector</a> is here! · Handcrafted by <a href="http://goo.gl/TDTfa">Bart Sitek</a></p>
</footer>
</div>
</div>
</div> <!-- /container -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery-1.8.2.min.js"><\/script>')</script>
<script src="assets/js/vendor/bootstrap.min.js"></script>
<script src="assets/js/projector.js"></script>
<script>
var _gaq=[['_setAccount','XX-XXXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>