home
·
contact
·
privacy
projects
/
plomtask
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Refactor tests.
[plomtask]
/
templates
/
base.html
1
<!DOCTYPE html>
2
<html>
3
<meta charset="UTF-8">
4
<style>
5
body {
6
font-family: monospace;
7
}
8
input.btn-harmless {
9
color: green;
10
}
11
input.btn-dangerous {
12
color: red;
13
}
14
div.btn-to-right {
15
float: right;
16
text-align: right;
17
}
18
{% block css %}
19
{% endblock %}
20
</style>
21
<body>
22
<a href="processes">processes</a>
23
<a href="conditions">conditions</a>
24
<a href="day">today</a>
25
<a href="calendar">calendar</a>
26
<hr>
27
{% block content %}
28
{% endblock %}
29
</body>
30
</html>