home · contact · privacy
71c79b407c1580760796c0cb118867040392ef04
[plomtask] / templates / base.html
1 <!DOCTYPE html>
2 <html>
3 <meta charset="UTF-8">
4 <style>
5 body {
6   font-family: monospace;
7 }
8 ul {
9   list-style-type: none;
10 }
11 input.btn-harmless {
12   color: green;
13 }
14 input.btn-dangerous {
15   color: red;
16 }
17 div.btn-to-right {
18   float: right;
19   text-align: right;
20 }
21 {% block css %}
22 {% endblock %}
23 </style>
24 <body>
25 <a href="processes">processes</a>
26 <a href="conditions">conditions</a>
27 <a href="day">today</a>
28 <a href="calendar">calendar</a>
29 <hr>
30 {% block content %}
31 {% endblock %}
32 </body>
33 </html>