diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..fecdba6 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8" name="viewport" content="width=80ch"> + <title>memories.blaise.zone</title> + <link rel="stylesheet" href="style.css"> +</head> +<body> + <h1><a href="http://blaise.zone">blaise</a>-memories</h1> + <hr> + <p> + Welcome to my public memories! <br> + I think of this as my "digital scrapbook". <br> + You may also be interested in my <a href="./tree/000">family tree</a>. <br> + Thanks for stopping by! —Blaise + </p> + <p> + <table style="width:100%"> + <tr> + <th>start</th> + <th>end</th> + <th>memory</th> + </tr> + {% for memory in memories %} + <tr> + <th>{{ memory.start }}</th> + <th>{{ memory.end }}</th> + <th><a href="./{{ memory.path[0] }}">{{ memory.title }}</a></th> + </tr> + {% endfor %} + </table> + </p> +{% include "footer.html" %} |