-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
86 lines (73 loc) · 2.38 KB
/
Copy pathblog.html
File metadata and controls
86 lines (73 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Evan Waldmann — Applied Mathematician, Software Engineer, Big Nerd. Orlando, FL.">
<title>Blog — Evan Waldmann</title>
<link rel="canonical" href="https://evanwaldmann.com/blog.html">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CQ35F5G9FW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CQ35F5G9FW');
</script>
</head>
<body>
<div class="pipboy">
<!-- Sidebar -->
<aside class="sidebar">
<a href="index.html" class="name">Evan Waldmann</a>
<div class="dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</aside>
<!-- Main -->
<div class="main">
<div class="screen-frame">
<!-- Status bar -->
<div class="status-bar">
<span class="online">SYSTEM ACTIVE</span>
<span>2026.05.14</span>
</div>
<!-- Nav -->
<div class="tabs">
<a href="index.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="projects.html">PROJECTS</a>
<a href="lab.html">LAB</a>
<a href="blog.html" class="active">BLOG</a>
</div>
<!-- Page content -->
<div class="hero-block fade-in">
<h2>Blog</h2>
<div class="bio">Thoughts, notes, and whatever else I feel like writing.</div>
</div>
<div class="sec-label fade-in">// posts</div>
<hr class="sec-rule">
<div class="blog-list reveal">
<a href="blog/hello-world.html" class="blog-entry">
<span class="blog-date">2026-05-01</span>
<span class="blog-title">Hello World</span>
<span class="blog-summary">First post on the new site. Testing the blog infrastructure.</span>
</a>
</div>
<!-- Footer -->
<div class="foot">
<span>© 2026 Evan Waldmann</span>
<span>db88e2a</span>
<span>Orlando, FL</span>
</div>
</div>
</div>
</div>
<script src="effects.js"></script>
</body>
</html>