-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
151 lines (151 loc) · 3.75 KB
/
blog.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<html>
<head>
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link
crossorigin=""
href="https://fonts.gstatic.com"
rel="preconnect"
/>
<link
href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;600&display=swap"
rel="stylesheet"
/>
<link href="style.css" rel="stylesheet" />
<title>Jonathan Evans</title>
</head>
<body>
<div class="topbar">
<div class="headshot_container">
<img
alt="A headshot of Jonathan Evans"
class="headshot"
src="headshot.jpg"
/>
</div>
<div class="title_container">
<h1 class="page_title">Jonathan Evans</h1>
<h2 class="subtitle">Blog</h2>
</div>
<nav class="navigation">
<a class="nav_link link" href="index.html"> About </a>
<a class="nav_link link" href="#footer"> Links </a>
<a class="nav_link link" href="contact.html"> Contact </a>
<a class="nav_link link" href="#posts"> Blog </a>
</nav>
</div>
<hr class="page_break" />
<div id="page_content">
<div class="post_body">
<div class="post_column">
<ul class="posts" id="post_list">
<hr class="post_break" />
<li class="post">
<div class="post_title_bar">
<h3 class="post_title">
<a href="blog/2024/12/29/What_a_Year.html">
What a Year
</a>
</h3>
<div class="date">2024/12/29</div>
</div>
<div class="tags">
<div class="tag">Project</div>
<div class="tag">Update</div>
</div>
</li>
<hr class="post_break" />
<li class="post">
<div class="post_title_bar">
<h3 class="post_title">
<a
href="blog/2024/6/9/Pancake_Problems.html"
>
Pancake Problems
</a>
</h3>
<div class="date">2024/06/09</div>
</div>
<p class="blurb">
Stacks on stacks on stacks on stacks
</p>
<div class="tags">
<div class="tag">Mathematics</div>
</div>
</li>
<hr class="post_break" />
<li class="post">
<div class="post_title_bar">
<h3 class="post_title">
<a href="blog/2024/4/7/The_Second_Try.html">
The Second Try
</a>
</h3>
<div class="date">2024/04/07</div>
</div>
<p class="blurb">
Get results before you get clean results
</p>
<div class="tags">
<div class="tag">design philosophy</div>
<div class="tag">maker</div>
</div>
</li>
<hr class="post_break" />
</ul>
</div>
</div>
<footer id="footer">
<div id="rss_bar">
<a href="blog/rss.xml" id="rss_feed">
<em id="rss_link">
Wanna keep up with the latest posts? Subscribe to
the RSS feed!
</em>
</a>
</div>
<hr class="page_break" />
<div class="footer_bar">
<div class="footer_links">
<a
class="footer_link link"
href="https://www.printables.com/@jevndev_1637559"
>
<svg
class="footer_link_icon"
id="footer_link_icon_printables"
>
<use
xlink:href="printables.svg#printables_svg"
></use>
</svg>
</a>
<a
class="footer_link link"
href="https://github.com/jevndev"
>
<svg
class="footer_link_icon"
id="footer_link_icon_github"
>
<use xlink:href="github.svg#github_svg"></use>
</svg>
</a>
<a
class="footer_link link"
href="https://www.linkedin.com/in/jevndev/"
>
<svg
class="footer_link_icon"
id="footer_link_icon_linkedin"
>
<use
xlink:href="linkedin.svg#linkedin_svg"
></use>
</svg>
</a>
</div>
</div>
</footer>
</div>
</body>
</html>