Initial import for public release...
[archweb_dev-nj.git] / templates / wiki / base.html
blob90d93156b911019f170f6d6a90f7d5d92596485b
1 <html>
2 <head>
3 <style type='text/css'>
4 body {
5 background: #333;
6 color: #ddd;
9 a {
10 color: #fff;
13 div.body {
14 padding: 25px;
15 margin: 15px;
16 background: #444;
19 div.controls {
20 padding: 20px;
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>