mirror of https://github.com/zulip/zulip.git
50 lines
903 B
HTML
50 lines
903 B
HTML
<!DOCTYPE html>
|
|
{% autoescape off %}
|
|
<html>
|
|
|
|
<head>
|
|
<title>Zephyr</title>
|
|
<link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
/* Make room for the topbar */
|
|
padding-top: 50px;
|
|
}
|
|
|
|
/* From bootstrap-responsive.css */
|
|
.navbar .brand {
|
|
padding-right: 10px;
|
|
padding-left: 10px;
|
|
margin: 0 0 0 -5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
<div class="navbar navbar-fixed-top">
|
|
<div class="navbar-inner">
|
|
<div class="container">
|
|
<a class="brand" href="#">Humbug</a>
|
|
<ul class="nav">
|
|
{% block nav %}
|
|
{% endblock %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{% endautoescape %}
|