zulip/templates/zephyr/base.html

43 lines
1.4 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
{# Base template for the whole site. #}
{% load compressed %}
<head>
<meta charset="UTF-8">
{% if user_profile.realm.domain %}
<title>{{user_profile.realm.domain}} - Humbug</title>
{% else %}
<title>Humbug</title>
{% endif %}
<!-- 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=Droid+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="/static/favicon.ico?v=2" rel="shortcut icon">
{# We need to import jQuery before Bootstrap #}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
{% block page_params %}
{# blueslip needs page_params.debug_mode. Set it to false by default. #}
<script type="text/javascript">
var page_params = {debug_mode: false};
</script>
{% endblock %}
{% compressed_js 'blueslip' %}
<script src="/static/third/bootstrap/js/bootstrap.min.js"></script>
{% compressed_js 'common' %}
{% block customhead %}
{% endblock %}
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>