-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
executable file
·34 lines (26 loc) · 927 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
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>Link Video Viewer</title>
<style type="text/css">
body {
margin: 40px;
}
h1 {
font-size: 24pt;
text-align: center;
margin-bottom:40px;
}
</style>
</head>
<body>
<h1>I hope you really love flash...</h1>
<ul id="test" class="vids"></ul>
<button id="moarphotos">Load more videos</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='config.js'></script> <!-- optional, used for file:/// desktop development convenience -->
<script src='/static/js/viewer.js'></script> <!-- optional, only loaded when hosted, common locker viewer utilities -->
</html>