-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 860 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="style/fxosstub.css"/>
<title>Hacker News for Firefox OS</title>
<script type="text/javascript" src="js/vendor/fastclick.js"></script>
</head>
<body>
<header>
<button id="btnBack" style="display:none;"></button>
<h1>Hacker News</h1>
<button id="btnRefresh"></button>
</header>
<section id="main">
<div id="loading">
Loading...
</div>
</section>
<iframe mozbrowser id="browser" src="#" frameborder="0" border="0" cellspacing="0" style="display:none;"></iframe>
<script type="text/javascript" src="js/vendor/jquery-2.0.0b2.js"></script>
<script type="text/javascript" src="js/vendor/waypoints.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>