-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="terminalize.js" type="text/javascript"></script>
<link rel="stylesheet" href="terminal.css" type="text/css" media="all">
<script type="text/javascript" charset="utf-8">
$(function() {
new Terminal($('#terminal'), {
issue: 'Terminalized.\ntype "help" to list commands.',
});
});
</script>
<style type="text/css">
html {
height: 100%;
}
body {
margin: 0;
padding: 20px;
height: 100%;
box-sizing: border-box;
background: #666;
color: white;
}
</style>
<title>Terminalize</title>
</head>
<body>
<ul id="terminal">
<li><a href="/wordpress/">blog</a></li>
<li><a href="/tools/">tools</a></li>
<li>
<h1>subdirectory</h1>
<ul>
<li><h1>text</h1>
the cake is a lie
</li>
</ul>
</li>
</ul>
</body>
</html>