-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.njk
35 lines (33 loc) · 1.34 KB
/
index.njk
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Zoé ✨</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="Zoe is now ooze and also a software developer from Montreal, Canada">
<link type="text/plain" rel="author" href="/humans.txt" />
<link rel="stylesheet" href="{{ '/css/index.css' | url }}">
</head>
<body>
<main>
<header>
<h1>
<a href="/">
<picture class="avatar">
<img src="img/avatar.jpg" alt="Zoe's avatar" width="160" height="160">
</picture>
</a>
</h1>
</header>
<h1>Hi, my name is Zoé!</h1>
<p>I'm a software developer in Montreal, Canada. I love coffee, I'm a modular synthesizer apprentice, and a mechanical keyboard enthusiast.</p>
<p>I will write patches to open-source software from time to time. You might find some of those under my <a href="https://github.com/zoeisnowooze">GitHub profile</a>.</p>
<div class="posts">
<h2>Posts</h2>
{% set postslist = collections.posts %}
{% include "postslist.njk" %}
</div>
<p>You can reach me by <a href="mailto:[email protected]">email</a> or on the <a rel="me" href="https://cathode.church/@ooze">Fediverse</a>.</p>
</main>
</body>
</html>