blob: 90d93156b911019f170f6d6a90f7d5d92596485b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<html>
<head>
<style type='text/css'>
body {
background: #333;
color: #ddd;
}
a {
color: #fff;
}
div.body {
padding: 25px;
margin: 15px;
background: #444;
}
div.controls {
padding: 20px;
}
</style>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% block content %}
<h1>This is the base template. Extend it with the "extends" template tag.</h1>
{% endblock %}
</body>
</html>
|