home · contact · privacy
Improve accounting scripts, start todo.py rewrite.
[misc] / new_todo / html / base.html
diff --git a/new_todo/html/base.html b/new_todo/html/base.html
new file mode 100644 (file)
index 0000000..a82a93b
--- /dev/null
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+<meta charset="UTF-8">
+<style>
+body {
+    font-family: monospace;
+    color: black;
+    background-color: white;
+}
+{% block css %}
+{% endblock %}
+</style>
+<body>
+<a href="templates">templates</a> |
+<a href="calendar">calendar</a> |
+<a href="reset_cookie">reset cookie</a>
+<hr>
+{% block content %}
+{% endblock %}
+</body>
+</html>
+
+