mirror of https://github.com/zulip/zulip.git
32 lines
810 B
HTML
32 lines
810 B
HTML
<!DOCTYPE html>
|
|
{% autoescape off %}
|
|
<html>
|
|
|
|
<head>
|
|
<title>Humbug, from Humbug Inc.</title>
|
|
<link href="/static/third/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/static/third/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
|
{# We need to import jQuery before Bootstrap #}
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
<script src="/static/third/bootstrap/js/bootstrap.min.js"></script>
|
|
<script src="/static/js/common.js"></script>
|
|
{% block customhead %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{% endautoescape %}
|