blob: 551b2ee2d26dbe6398417f16d350b0f8bb4294a7 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=80ch">
<title>family tree index</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<h1><a href="http://blaise.zone">blaise</a>-<a href="../">memories</a>/tree</h1>
<hr>
<p>
This page lists all of the nodes of my family tree project.
</p>
<p>
{% for index, person in people.items() %}
<a href="./{{ '%03d' | format(index) }}">
{{ '%03d' | format(index) }} {{ person.name }}
</a>
<br>
{% endfor %}
</p>
{% include "footer.html" %}
|