home
·
contact
·
privacy
projects
/
plomtask
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Nest Todo creation by adopting and making children as needed.
[plomtask]
/
templates
/
_base.html
1
<!DOCTYPE html>
2
<html>
3
<meta charset="UTF-8">
4
<style>
5
body {
6
font-family: monospace;
7
text-align: left;
8
padding: 0;
9
}
10
input.btn-harmless {
11
color: green;
12
}
13
input.btn-dangerous {
14
color: red;
15
}
16
div.btn-to-right {
17
float: right;
18
text-align: right;
19
}
20
td, th, tr, table {
21
vertical-align: top;
22
padding: 0;
23
}
24
{% block css %}
25
{% endblock %}
26
</style>
27
<body>
28
<a href="processes">processes</a>
29
<a href="conditions">conditions</a>
30
<a href="day">today</a>
31
<a href="calendar">calendar</a>
32
<hr>
33
{% block content %}
34
{% endblock %}
35
</body>
36
</html>