mirror of https://github.com/zulip/zulip.git
35 lines
1014 B
HTML
35 lines
1014 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
{# Base template for the whole site. #}
|
|
|
|
<head>
|
|
<title>Humbug, from Humbug Inc.</title>
|
|
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
<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_public }}js/common.js"></script>
|
|
{% block customhead %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|