summaryrefslogtreecommitdiffstats
path: root/web/templates/base.html
blob: ffbe99b6789281afb8f35c7474169a41cda8ab9b (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
<!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>
	<script>
		window.ykill = {
			'api_host': '{{ api_host }}',
		};
	</script>
	<script src="/static/js/common.js"></script>
	{% block js %}{% end %}
</head>
<body>
	<div id="wrapper">
		<div id="topbar">
			<div id="title"></div>
			<div id="nav">
			</div>
		</div>

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