-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (26 loc) · 823 Bytes
/
index.html
File metadata and controls
34 lines (26 loc) · 823 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Timeline Viewer</title>
<style type="text/css">
body {
margin: 40px;
}
h1 {
font-size: 24pt;
text-align: center;
margin-bottom:40px;
}
</style>
</head>
<body>
<span id='status'></span>
<h1>Forever Timeless</h1>
<ul id="test" class="items"></ul>
<button id="moar">Load more</button>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="script.js"></script>
<script src='/static/js/viewer.js'></script> <!-- optional, only loaded when hosted, common locker viewer utilities -->
</html>