-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
68 lines (65 loc) · 2.24 KB
/
index.htm
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>theImageGallery</title>
<meta name="keywords" content="image gallery funny images" />
<meta name="description" content="" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/ajaxupload.js"></script>
<script type="text/javascript" src="js/message.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/ga.js"></script>
</head>
<body>
<!--
<div>
<a id="latest"></a>
<a id="random"></a>
<a id="top"></a>
</div>
-->
<div id="messages"></div>
<div id="logo">
<h1><a href="/">theImageGallery</a></h1>
</div>
<div id="header">
<div id="menu">
<ul>
<li><a id="upload_menu" href="#">upload</a></li>
<li style="float:right;"><a href="todo.txt">roadmap</a></li>
</ul>
</div>
</div>
<div id="content">
<div id="whoareyou">
<form action="post">
<fieldset>
<label for="username">Mind telling us who you are?</label>
<input id="username" type="text" /> <a href="#">Don't ask me again</a>
</fieldset>
</form>
</div>
<div id="droparea">
drop files to upload
</div>
<div id="navigation">
<a href="#" class="left"> <</a>
<a href="#" class="right"> ></a>
</div>
<div id="slideshow" class="normal"></div>
</div>
<div id="footer">
<p>Disclaimer: All images are uploaded by users of this site. The content is not moderated.</p>
<p>Think you can do this better than me? Check <a href="https://github.com/exstac/ImageGallery/">this</a> out for inspiration.</p>
</div>
<div class="popup" style="display:none;"></div>
<div class="popup-bg" style="display:none;">
<span class="right">></span>
<span class="left"><</span>
</div>
</body>
</html>