-
Notifications
You must be signed in to change notification settings - Fork 99
/
index.html
38 lines (34 loc) · 1.49 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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet/less" type="text/css" href="styles/main.less" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/less.js/2.7.2/less.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/1.4.3/js/jquery.terminal.js"></script>
<script type="text/javascript" src="src/shell.js"></script>
<script type="text/javascript" src="src/cli.js"></script>
</head>
<body>
<div class="terminal-window">
<header>
<div class="button red"></div>
<div class="button yellow"></div>
<div class="button green"></div>
</header>
<div id="terminal">
<p><span class="green">\[._.]/</span> - you're in codebytere's cli! type `help` to get started.</p>
<p class="hidden">
<span class="prompt">
<span class="root">root</span>
<span class="tick">❯</span>
</span>
<span contenteditable="true" class="input" spellcheck="false"></span>
</p>
</div>
</div>
<div class="footer">
<p>© Shelley Vohr 2024</p>
<p> Made with ❤ and coffee</p>
<p>Site code can be found <a class="site-code" target="_blank" href="https://github.com/codebytere/codebytere.github.io">here</a></p>
</div>
</body>