-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
50 lines (48 loc) · 1.59 KB
/
Copy pathposts.html
File metadata and controls
50 lines (48 loc) · 1.59 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A general-purpose website for information about Bryan Hoffman.">
<title>Bryan's Website</title>
<link rel="stylesheet" href="/assets/style.css">
<link rel="icon" href="/assets/favicon.ico" type="image/x-icon">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/posts">Posts</a>
<a href="/bouncy">Bouncy</a>
<a href="/assets/Bryan_Hoffman_Resume.pdf">Professional Resume</a>
</nav>
<div id="content">
<h1>Bryan's Blog</h1>
<p id="latest-posts-header"><u>Latest posts</u></p>
<div id="latest-posts">
<a href="/posts/finish-what-you-start">
<div class="post-preview">
<h4>Finish what you start</h4>
<p>...before you move to something else</p>
<i>2024/06/10</i>
</div>
</a>
<div class="separator"></div>
<a href="/posts/minimalism">
<div class="post-preview">
<h4>Minimalism</h4>
<p>Simplicity is good.</p>
<i>2024/02/25</i>
</div>
</a>
<div class="separator"></div>
<a href="/posts/technology-looking-for-a-problem">
<div class="post-preview">
<h4>Technology Looking for a Problem</h4>
<p>Don’t build a cart if you don’t have a horse.</p>
<i>2024/02/06</i>
</div>
</a>
<div class="separator"></div>
</div>
</div>
</body>
</html>