-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
87 lines (87 loc) · 4.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<meta name="viewport" content ="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Benedict Ortiz - Personal Website</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id = "root">
<div>
<div class = "content">
<ul class = "header">
<li><a class ="home-button" href="/index.html">Home</a></li>
<li><a class ="resume-link" href="/files/resume_benortiz.pdf">Resume</a></li>
<li><a class ="blog-button" href="/blog.html">Blog</a></li>
<li><a class ="project-button" href="/project.html">Projects</a></li>
</ul>
<h1>Benedict Ortiz</h1>
<div class = "social">
<a href ="https://github.com/Ben-Ortiz" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-github.svg" alt ="github logo">
</a>
<a href ="mailto:[email protected]" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-mail.svg" alt ="linkedin logo">
</a>
<a href ="https://www.linkedin.com/in/benedictortiz/" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-linkedin.svg" alt ="linkedin logo">
</a>
</div>
<div class = "blog heading">
<h3>My Blog</h3>
</div>
<br>
<div class = "blog">
<!-- space -->
<div class ="blog-entry">
<a class="blog-link" href ="blogEntry4.html">
<h4>A 4th blog post just to give an update on myself</h4>
</a>
<p class="blog-date">January 6, 2024</p>
<p class="blog-description">
An update on myself, the website, and just general ramblings.
</p>
</div>
<br>
<!-- space -->
<!-- space -->
<div class ="blog-entry">
<a class="blog-link" href ="blogEntry3.html">
<h4>A third blog post to give an update on this page</h4>
</a>
<p class="blog-date">December 6, 2022</p>
<p class="blog-description">
An updated post about this website.
</p>
</div>
<br>
<!-- space -->
<div class ="blog-entry">
<a class="blog-link" href ="blogEntry2.html">
<h4>A second blog post to test spacing</h4>
</a>
<p class="blog-date">September 19, 2022</p>
<p class="blog-description">
A totally different post, also a second post.
</p>
</div>
<br>
<!-- space -->
<div class ="blog-entry">
<a class="blog-link" href ="blogEntry1.html">
<h4>This is my first blog post!</h4>
</a>
<p class="blog-date">September 19, 2022</p>
<p class="blog-description">
Making my first blog post on this website.
</p>
</div>
</div>
</div>
</div>
</div>
<script src = "js/index.js"></script>
</body>
</html>