diff options
author | Blaise Thompson <blaise@untzag.com> | 2020-05-30 06:54:02 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2020-05-30 06:54:02 -0500 |
commit | a0ea0199b480f78e2e7a2e317149a152097557ce (patch) | |
tree | 2559102c2bb4c5da26999a9d983bbf7603f54b11 /tree-source/templates/person.html | |
parent | 2cfcec1a2ff0fb7b57786f11d99586f66bb98ba9 (diff) |
tree
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" %} |