repo.or.cz
/
archweb_dev-nj.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added robots.txt
[archweb_dev-nj.git]
/
templates
/
wiki
/
base.html
blob
90d93156b911019f170f6d6a90f7d5d92596485b
1
<html>
2
<head>
3
<style
type='text/css'
>
4
body
{
5
background
:
#333
;
6
color
:
#ddd
;
7
}
8
9
a
{
10
color
:
#fff
;
11
}
12
13
div
.
body
{
14
padding
:
25px
;
15
margin
:
15px
;
16
background
:
#444
;
17
}
18
19
div
.
controls
{
20
padding
:
20px
;
21
}
22
</style>
23
<title>
{% block title %}{% endblock %}
</title>
24
</head>
25
<body>
26
{% block content %}
27
<h1>
This is the base template. Extend it with the
"extends"
template tag.
</h1>
28
{% endblock %}
29
</body>
30
</html>