summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 53bc3cf5d16e91a8dced7e557da404c2acc97a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
 <link rel="stylesheet" href="/static/styles.css" />
 <title>{% block title %}Polls{% endblock %}</title>
</head>

<body>
<div id="main">
<div id="top">
 <h1><a href='http://{{root_url}}'>Papillon</a></h1>
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
</div>
</body>
</html>