-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
35 lines (35 loc) · 1.63 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
34
35
<html>
<!--
this was coded quickly with vim
-->
<head>
<title>xkcd 1446</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width" />
</head>
<body>
<div class="box">
<h1>xkcd 1446 - Landing</h1>
<div class="source">Source: <a href="http://xkcd.com/1446/">http://xkcd.com/1446/</a></div>
</div>
<div class="box">
<div class="controls">
<a href="#" onclick="go_first(); return false">|<</a>
<a href="#" onclick="go_prev(); return false">< Prev</a>
<span id="current_id">Loading...</span>
<a href="#" onclick="go_next();return false">Next ></a>
<a href="#" onclick="go_last();return false">>|</a>
</div>
<img src="" id="image"/>
</div>
<div class="footer box">
<p><i>Note: This event is over. You can use the arrow keys on your keyboard to browse through the images.</i></p>
<p>xkcd is licensed by <a href="http://www.xkcd.com/about/">Randall Munroe</a> under a <a href="http://www.xkcd.com/license.html">Creative Commons Attribution-NonCommercial 2.5 License</a>, please give credit where it is due (because he's a cool guy as far as I can tell from being a regular reader of his comic).</p>
<p>Created for the people of <a href="http://www.reddit.com/r/xkcd">/r/xkcd</a> and all the other xkcd readers. <a href="https://github.com/MagicalTux/xkcd1446">Open source</a> and open to pull requests.</p>
</div>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/jquery.playSound.js"></script>
<script src="js/jquery.history.min.js"></script>
<script src="code.js"></script>
</body>
</html>