-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-home.html
37 lines (34 loc) · 1.26 KB
/
blog-home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Microblog</title>
</head>
<body>
<div class="blog-page">
<header>
<h2>Loris' Blog</h2>
</header>
<div class="blog-page">
<article id="intro">
<p>Hello, and welcome to my personal blog.</p>
<p>Check out my <a href="https://github.com/lorismilloni" target="_blank">Github</a> page to see stuff I work on.</p>
<p>I'm a big fan of photography, programming, swimming, retro videogames, etc.</p>
</article>
</div>
<!-- Posts 2023 -->
<div class="year-title blog-page">
<h2 class="year">2023</h2>
</div>
<div class="post blog-page">
<span class="post-time">
jul 18
</span>
<span class="post-title">
<span class="post-link" id="01" onclick="loadPost(this)">Adjusting the course, once again</span>
<span class="readtime">6 min read</span>
</span>
</div>
</div>
</body>
</html>