-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/styles/common.css" />
<link rel="stylesheet" href="/styles/index.css" />
<link rel="icon" type="image/webp" href="/public/logo.webp" />
<title>Barrett Ruth</title>
</head>
<body class="graph-background">
<header>
<a href="/" onclick="refresh(event)">
<div class="terminal-container">
<span class="terminal-prompt">barrett@ruth:~$</span>
<span class="terminal-cursor"></span>
</div>
</a>
<div class="header-links">
<a target="_blank" href="/public/resume.pdf">Resume</a>
<a target="_blank" href="/public/transcript.pdf">Transcript</a>
<a target="_blank" href="/about.html">About</a>
</div>
</header>
<main class="main">
<div class="content">
<ul class="topics">
<li class="topic software">
<a href="/software" onclick="typechars(event)">Software</a>
</li>
<li class="topic economics">
<a href="/economics" onclick="typechars(event)">Economics</a>
</li>
<li class="topic trading">
<a href="/trading" onclick="typechars(event)">Trading</a>
</li>
<li class="topic algorithms">
<a href="/algorithms" onclick="typechars(event)">Algorithms</a>
</li>
</ul>
<div class="posts" id="posts"></div>
</div>
</main>
<footer>
<div class="footer-links">
<a target="_blank" href="https://github.com/barrett-ruth/">GitHub</a>
<a target="_blank" href="https://www.linkedin.com/in/barrett-ruth/"
>LinkedIn</a
>
<a target="_blank" href="mailto:[email protected]">Email</a>
</div>
</footer>
<script src="scripts/common.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>