-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.28 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Haikupolypse</title>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<meta name="description" content="Vegetate on an endless stream of Youtube Haiku">
<link href="master.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>Haikupolypse</h1>
<select id="sortType">
<option value="hot">hot</option>
<option value="new">new</option>
<option value="hour">top last hour</option>
<option value="day">top last 24 hours</option>
<option value="week">top last week</option>
<option value="month">top last month</option>
<option value="year">top last year</option>
<option value="all">top all time</option>
</select>
<p><a id="title" href='#' target="_blank"></a></p>
<div id="player"></div>
<script src="master.js"></script>
</body>
</html>