summaryrefslogtreecommitdiffstats
path: root/web/templates/base.html
blob: 30d565e6d44658418b3dfecf762751602dc0bd46 (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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
	<title>whelp.gg</title>
	<link rel="stylesheet" type="text/css" href="/css/base.css">
	<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Metrophobic">
	{% 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="topbar">
		<h1><a href="/">whelp.gg</a></h1>
		<div id="nav">
		</div>
		<form method="get" action="/search">
			<input type="search" name="q">
			<input type="submit" value="search">
		</form>
	</div>
	<div id="wrapper">
		{% block main %}{% end %}
	</div>
	<footer>
		in the game of moons, you can't win, but you also can't die
	</footer>
</body>
</html>