home
·
contact
·
privacy
projects
/
plomtask
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3408d676929c74b5dd4829fee3b0dd2710de7406
[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
</style>
12
<body>
13
<a href="processes">processes</a>
14
<a href="conditions">conditions</a>
15
<a href="day">today</a>
16
<a href="calendar">calendar</a>
17
<hr>
18
{% block content %}
19
{% endblock %}
20
</body>
21
</html>