summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2021-07-08 16:42:51 -0500
committerBlaise Thompson <blaise@untzag.com>2021-07-08 16:42:51 -0500
commit6fa3d6d03c4f0731cf388166bacebbf2e062fd1c (patch)
tree66c093d15434f83bad906e2a6e0735d6df27311c /templates/index.html
parent7644f77b2b94bf3acf5793ba66e744daa67e4e9d (diff)
refactor with actual building
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html33
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" %}