blob: 8a7d315fb710dfc55fd9a64a313886ac33f4886b (
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
|
<!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>/<a href="../">tree</a>/{{ '%03d' | format(person.index) }}
</h1>
<hr>
<h2>
{{ person.name }}
</h2>
<p>
{% if person.birthday %} birthday: {{ person.birthday }} <br> {% endif %}
{% if person.birthplace %} birthplace: {{ person.birthplace }} <br> {% endif %}
{% if person.deathday %} deathday: {{ person.deathday }} <br> {% endif %}
</p>
<h3>local family tree</h3>
{{ svg }}
<h3>all relatives</h3>
{% include "footer.html" %}
|