-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (80 loc) · 2.67 KB
/
index.html
File metadata and controls
95 lines (80 loc) · 2.67 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<style>
body {
margin: 0;
}
.topbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
color: white;
padding: 14px 20px;
position: fixed;
top: 0;
width: 100%;
box-sizing: border-box;
}
.right-items {
display: flex;
gap: 20px; /* space between right items */
}
.topbar a {
cursor: pointer;
color: inherit;
text-decoration: none;
}
img {
width: 100%;
height: auto;
display: block;
}
</style>
<div class="topbar">
<div class="left-items">
<a href="/"><span>Mark Nash</span></a>
</div>
<div class="right-items">
<a href="/tech_blog.html"><span>Blog</span></a>
<a href="/"><span>About</span></a>
</div>
</div>
<!-- This div will only be visible when on / -->
<div id="content" style="margin-top: 30px; padding: 20px; display: none;">
<h1>Mark Nash</h1>
I am a Software Engineer, minimalist, and road biker
<ul>
<li><a href="https://linkedin.com/in/markoce">Linkedin</a></li>
<li><a href="https://github.com/abacef">Github</a> (I dont usually make my projects public but when I do, they are ones I am proud of)</li>
<li><a href="/tech_blog.html">Technical Blog</a></li>
<br>
<li><a href="https://www.strava.com/athletes/97404982">Strava</a> (sometimes I make fun rides publically viewable)</li>
<li><a href="/bike_blog.html">Road biking blog</a></li>
</ul>
<!-- <h2>Work Experience</h2>
<details>
<summary>Rheonix</summary>
<p>This content appears when you click the summary above.</p>
</details>
<details>
<summary>Research</summary>
<p>This content appears when you click the summary above.</p>
</details>
<details>
<summary>Amazon Intern</summary>
<p>This content appears when you click the summary above.</p>
</details>
<details>
<summary>Amazon FT</summary>
<p>This content appears when you click the summary above.</p>
</details> -->
</div>
<script>
if (window.location.pathname === "/") {
document.getElementById("content").style.display = "block";
}
</script>
</body>