summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: fecdba68e0eec0717b2c108377b5360e961c3f1d (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
32
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" %}