blob: 0147cfad995f83123b9552ff76d1570d800962fe (
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
31
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
{# vim: set sw=4 sts=4 et filetype=htmldjango : #}
{# Copyright: 2008 Gentoo Foundation #}
{# Author(s): Nirbheek Chauhan <nirbheek.chauhan@gmail.com> #}
{# License: GPL-2 #}
{# #}
{# Immortal lh! #}
{# #}
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{% block title %}AutotuA{% endblock %}</title>
<link rel="stylesheet" href="{{ media_prefix }}css/default.css" type="text/css"/>
{#<script src="{{ media_prefix }}js/default.js" type="text/javascript"></script>#}
{% block head %}{% endblock %}
</head>
<body>
<div id="topcurves">
<img src="{{ media_prefix }}images/topcorners.gif"/>
</div>
<div id="header">
Zomg, AutotuA.
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
<div id="footer">
{{ ddate }}
</div>
</body>
</html>
|