-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (85 loc) · 3.44 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
<!DOCTYPE html>
<html manifest="manifest.appcache">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/app.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Project name</a>
<ul class="nav pull-right">
<li class="dropdown">
<button class="webapp-install btn btn-primary"
style="display: none;">Install</button>
</li>
</ul>
</div>
</div>
</div>
<div class="container demo">
<h1>Bootstrap starter template</h1>
<p>Use this document as a way to quick start any new project.
All you get is this message and a barebones HTML document.</p>
<div>
<div style="display: none;" class="webapp-error alert alert-block">
<a class="close" data-dismiss="alert">×</a>
<h4 class="alert-heading">Install error</h4>
<span class="webapp-error-details"></span>
</div>
</div>
<div class="row">
<div class="span4">
<h2>Network Status</h2>
<p>
<span class="networkStatus label"></span>
</p>
</div>
<div class="span4">
<h2>AppCache Status</h2>
<p>
<span class="appCacheStatus label">n/a</span>
</p>
<p>
<div class="updateAlert well" style="display: none;">
<p>There is an application update. Update now?</p>
<button class="updateButton btn btn-primary">Update</button>
</div>
</p>
<p>
<button class="checkUpdate btn btn-primary"
style="display: none;">Check for Update</button>
</p>
<div class="eventSection" style="display: none;">
<p>appCache events fired (most recent first):</p>
<div class="appCacheEvent"></div>
</div>
</div>
<div class="span4">
<h2>Sample JavaScript</h2>
<p>The button below will use the modal JS component.</p>
<!-- sample modal content -->
<div id="myModal" class="modal hide fade">
<div class="modal-header">
<a class="close" data-dismiss="modal" >×</a>
<h3>Modal Heading</h3>
</div>
<div class="modal-body">
<h4>Text in a modal</h4>
<p>This is text in a modal.</p>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary">Save changes</a>
<a href="#" class="btn" data-dismiss="modal" >Close</a>
</div>
</div>
<a class="btn btn-primary btn-large" href="#myModal"
data-toggle="modal">Launch demo modal</a>
</div>
</div>
</div>
<script async data-main="js/app" src="js/app.js" charset="utf-8"></script>
</body>
</html>