-
Notifications
You must be signed in to change notification settings - Fork 225
/
fallback.html
35 lines (28 loc) · 865 Bytes
/
fallback.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="css/base.css"/>
<title>Offline - Firefox OS Boilerplate App</title>
</head>
<body>
<header>
<h1>Firefox OS Boilerplate</h1>
</header>
<div id="main">
<p>You are currently offline. You came here through the manifest.appcache file.</p>
</div>
<footer>
<ul>
<li><button id="save-bookmark">Save bookmark</button></li>
<li><button id="reload" class="reload">Reload</button></li>
</ul>
</footer>
<script type="text/javascript" src="js/base.js"></script>
<script type="text/javascript" src="js/webapp.js"></script>
<!--
Loosely based on fxosstub: https://github.com/Jaxo/fxosstub
-->
</body>
</html>