brmbar/server/templates/base.html
2011-06-12 23:10:22 +02:00

15 lines
438 B
HTML

<html>
<head>
<title>BrmBar: {% block title %}{% endblock %}</title>
<link rel="icon" type="image/png" href="/static/favicon.png">
</head>
<body>
<h1><img src="/static/favicon.png" valign="middle" /> BrmBar: {{ self.title() }}</h1>
<div id="menu">
<a href="/">home</a> | <a href="/stats/">stats</a> | <a href="/log/">log</a> | <a href="/admin/">admin</a>
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>