-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 964 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/assets/terminal-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/node_modules/xterm/css/xterm.css" />
<title>Vinnie Marones' Portfolio</title>
</head>
<body>
<noscript>
<h4>Sadly mate you will have to have javascript enabled to view this site. You can download my resume though!</h4>
<a href="/assets/Vincent-Marone-Resume.pdf">Resume</a>
</noscript>
<div id='mobile' class="hidden">
<h1>Sorry...</h1>
<h3>...but this PoC terminal is not compatible with mobile browsers. You can download my resume though!</h3>
<a href="/assets/Vincent-Marone-Resume.pdf">Resume</a>
Vinnie Marone
</div>
<div id="terminal"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>