File: base.html

package info (click to toggle)
pyzor 1%3A1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 788 kB
  • ctags: 1,034
  • sloc: python: 6,518; makefile: 154; sh: 19
file content (23 lines) | stat: -rw-r--r-- 603 bytes parent folder | download | duplicates (4)
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>