summaryrefslogtreecommitdiffstats
path: root/web/templates/base.html
blob: afd3c6800b73d02e3ec2bcfb912d1ec88afeb920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
	<link rel="stylesheet" type="text/css" href="/css/base.css" />
	<script src="//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools.js"></script>
</head>
<body>
	<div id="wrapper">
		<div id="topbar">
			<div id="title"></div>
			<div id="nav">
			</div>
		</div>

		{% block main %}{% end %}
	</div>
</body>
</html>