1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}
<link rel="stylesheet" href="../static/style.css" />
<title>{% block title %}{% endblock %} - Pyzor</title>
{% endblock %}
</head>
<body>
<div id="body_wrapper">
<div id="header">
<img src="../static/pyzor.gif"/>
{% block header %}{% endblock %}
<hr/>
</div>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
{% endblock %}
</div>
</div>
</body>
|