summaryrefslogtreecommitdiff
path: root/res/templates/base.html
blob: 6a0308583c93dd4f8d38776ae92cd425af7bc7e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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="shortcut icon" href="/static/img/favicon2.ico" />
    <link href="/static/css/style.css" rel="stylesheet" type="text/css">
    <title>{% block title %}{% endblock %} - My Webpage</title>
    {% endblock %}
</head>
<body>
    <div id="content">{% block content %}{% endblock %}</div>
    <div id="footer">{% block footer %}{% endblock %}</div>
</body>