blob: b05a4fafa702e0e0b70278b25a10bf2b1a010ffa (
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
26
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/base.css" />
{% block css %}{% end %}
<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>
|