-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (60 loc) · 2.73 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
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
<!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>Endless Beer</title>
<link rel="shortcut icon" href="favicon.png">
<link href="./style.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<script type="text/javascript" src="./js/jquery-1.8.3.min.js"></script>
<script src="./js/jquery.jscroll.js"></script>
<script type="text/javascript">
$(function () {
console.log("test");
$('#beer').jscroll({
padding: 10,
loadingHtml: ''
});
});
</script>
</head>
<body>
<div id="beer" class="centered">
<div class="jscroll-inner">
<pre>
__ . _, . _ . __, .__
_(_0o),,_)o(_)O,(__)o(__)o_, __
,o(__),_)o(_)O,(__)o,o(__),_)_)O,(__)o_,__
o(_,-o(_ )(),(__(_)oO)_o(_,-o(_ )(),(__(_)oO)_
.O(__)o,__).(_ )o(_)Oo_).O(__)o,__).(_ )o(_)Oo_)
| | | | | |_)0_)0
| | | | | |_)0_)0
| | | | | |,_,_)
| | | | | |o(_)
.----| | | | | |_/`)
/ .--| | | | | |_/`)
| / | | | | | |0_)
| | | | | | | |0)
| | | | | | | |)
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
</pre>
</div>
<div class="jscroll-next-parent" style="display: none;"><a class="jscroll-next" href="./moreBeer.html"></a></div>
</div>
</body>
</html>