home
·
contact
·
privacy
projects
/
misc
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add forgotten files.
[misc]
/
new_todo
/
html
/
base.html
1
<!DOCTYPE html>
2
<html>
3
<meta charset="UTF-8">
4
<style>
5
body {
6
font-family: monospace;
7
color: black;
8
background-color: white;
9
}
10
{% block css %}
11
{% endblock %}
12
</style>
13
<body>
14
<a href="templates">templates</a> |
15
<a href="calendar">calendar</a> |
16
<a href="reset_cookie">reset cookie</a>
17
<hr>
18
{% block content %}
19
{% endblock %}
20
</body>
21
</html>
22
23