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