-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (32 loc) · 827 Bytes
/
index.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
---
title: Hamza Haji
layout: home
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hamza Haji</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h3>me in 30 seconds</h3>
<p>
I am a mildly curious guy who loves history, new ideas and the smell of coffee.
I am generally fascinated by the obvious.
When not adulting, I am probably alternating
between bouts of reading, daydreaming and writing.
</p>
<p><a href="/now.html" target="_blank" >Here's</a> what I am doing now.</p>
<p>Here are some essays I have written. Enjoy.
</p>
<ul>
{% for post in site.posts %}
<li>
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
</li>
{% endfor %}
</ul>
© 2020-2022 <a class="small" href="/">HAMZA HAJI</a>
</body>
</html>