-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
100 lines (100 loc) · 4.2 KB
/
posts.html
File metadata and controls
100 lines (100 loc) · 4.2 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
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<title>Posts - Seth McKnight</title>
</head>
<body>
<header>
<h1>Seth McKnight</h1>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="posts.html">Posts</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div id="hero">
<h2>Links, Thoughts, & Things</h2>
<img src="https://via.placeholder.com/150" alt="Seth McKnight" class="profile-pic">
<p>Here are posts where I share thoughts, links, and things that I'm liking.</p>
</div>
<div id="featured-posts">
<h2>Featured Posts</h2>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
</div>
<div id="all-posts">
<h2>All Posts</h2>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
<div class="post-card">
<img src="https://via.placeholder.com/150" alt="Project 1">
<h3>Post Title 1</h3>
<p>Blurb if one is needed. Think a tweet or caption.</p>
<a href="projects/project1.html">View</a>
</div>
</div>
</main>
<footer>
<div class="footer-content">
<p>© 2025 Seth McKnight. All rights reserved.</p>
<div class="social-icons">
<a href="linkedin.com/in/seth-mcknight" target="_blank"><i class="fa fa-link"/></a>
<a href="github.com/sethmcknight" target="_blank"><i class="fa fa-github"/></a>
<a href="twitter.com/sethmcknight" target="_blank"><i class="fa fa-twitter"/></a>
<a href="instagram.com/sethmcknight" target="_blank"><i class="fa fa-instagram"/></a>
</div>
<p>Contact: <a href="mailto:sethmcknight1991@gmail.com">Seth McKnight</a></p>
<p>Location: <a href="https://www.google.com/maps/place/Colorado_Springs,+CO" target="_blank">Colorado Springs, CO</a></p>
</div>
<div class="footer-bottom">
<p>Built with <a href="https://www.codecademy.com/" target="_blank">Codecademy</a></p>
</div>
</footer>
</body>
</html>