-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
42
---
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>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3YN5NLT860"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3YN5NLT860');
</script>
<body>
<h2>me in 15 seconds</h2>
<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 doing internet things.
</p>
<h2>What am I doing now?</h2>
<p>See <a href="/now.html" target="_blank" >my now page.</a></p>
<h4>Essays:</h4>
<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>