summaryrefslogtreecommitdiff
path: root/src/templates/base.html
blob: 840024d3729e5fc831ef8e4ba07f5cc0d9ab2616 (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
{% load static %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <link rel="stylesheet" href="{% static 'css/NORDUnet.css' %}" type="text/css" media="screen" title="NORDUnet" charset="utf-8" />
  <title>{% block title %}{% endblock %}</title>
  {% block js %}
  {% endblock %}
</head>
<body>
    <div id="container">
        <div id="top">
            <table id="top_table">
                <tr>
                  <td><img src="{% static 'img/NORDUnet2.jpg' %}" width="203" height="46" alt="" /></td>
                </tr>
            </table>
        </div>
        <div id="content">
        {% block content %}{% endblock %}
        </div>
        <div id="footer">
            <p>NORDUnet A/S | Kastruplundgade 22 | DK-2770 Kastrup | DENMARK | Phone +45 32 46 25 00 | Fax +45 45 76 23 66 | info@nordu.net</p>
        </div>
    </div>
</body>
</html>