-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
21 lines (21 loc) · 841 Bytes
/
base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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">
<head>
<title>{% block title %}I'm a title!{% endblock %}</title>
<style>
html,body{margin:0;padding:0}
div#container{text-align:center; width:600px; margin:0 auto;}
</style>
<link type="text/css" href="/static/css/south-street/jquery-ui-1.7.2.custom.css" rel="stylesheet"></link>
<script type="text/javascript" src="/static/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="/static/js/jquery-ui-1.7.2.custom.min.js"/></script>
{% block extrahead %}{% endblock %}
</head>
<body>
<div id="container">
<div id="wrapper">
{% block content %}{% endblock %}
</div>
</div>
</body>
</html>