Subversion Repositories navi

Rev

Rev 3 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 szabot 1
<html>
2
<head>
3
<title>{% block title %}Title{% end %}</title>
4
<style type="text/css">
5
body {
6
        background: #145179;
7
        color: #FFF6D0;
8
        font-family: papyrus,"Georgia","Times New Roman",serif;
9
        padding: 0px;
10
        border: 0px;
11
        margin: 0px;
12
}
13
h1 {
14
        text-align: center;
15
        font-size: 52px;
16
}
17
#center {
18
        background: #2594DE;
19
        width: 760px;
20
        margin-left: auto;
21
        margin-right: auto;
22
        padding: 20px;
23
}
24
</style>
25
</head>
26
<body>
27
<div id="center">
28
<h1>{% block title %}Title{% end %}</h1>
29
{% block body %}Body{% end %}
30
</div>
31
</body>
32
</html>