diff options
Diffstat (limited to 'tree-source/templates/person.html')
-rw-r--r-- | tree-source/templates/person.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tree-source/templates/person.html b/tree-source/templates/person.html new file mode 100644 index 0000000..8a7d315 --- /dev/null +++ b/tree-source/templates/person.html @@ -0,0 +1,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" %} |