blob: 41ce3fde6f36e1b62a13955abc74227326d0ae07 (
plain)
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
|
---
title: Mike Vink
contacts:
- href: /publickey.gpg
name: GnuPG
description: Click me, trust me.
- href: https://github.com/ivi-vink
name: GitHub
description: CopilotHub?
- href: https://stackoverflow.com/users/16349137/carrot-the-king
name: stackoverflow
description: Nothing here, but I have one.
---
<html>
<head>
<title>{{ title }}</title>
<link rel="stylesheet" href="/tufte.css" />
</head>
<body>
<header>
<h1 class="webpagetitle">{{ title }}'s Webpage</h1>
</header>
<main>
<article>
<section>
<header>
</header>
<section>
<figure class="centered">
<a href="/picture-full.jpg">
<img class="rounded" src="/picture.jpg" alt="/picture.jpg" />
</a>
</figure>
<p>
<label for="sn-demo"
class="margin-toggle">
</label>
<input type="checkbox"
id="sn-demo"
class="margin-toggle"/>
<span class="marginnote">
<a href="/dunya-full.jpg" >
<img class="rounded" src="/dunya.jpg" alt="/dunya.jpg" />
Dunya
</a>
</span>
Welcome, O, Surfer, I am Mike Vink and this is my webpage.
That blue russian cat there is dunya.
</p>
</section>
<h2>Contact Info</h2>
<dl>
<dt>
email
</dt>
<dd>
ivi at this site's parent domain.
</dd>
{{ for link of contacts }}
<dt>
<a href="{{ link.href }}">
{{ link.name }}
</a>
</dt>
<dd>
{{ link.description }}
</dd>
{{ /for }}
</dl>
</section>
</article>
</main>
<footer>
</footer>
</body>
</html>
|