home · contact · privacy
a82a93bf6f118102405108f80308a3b95a309567
[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