zulip/templates/zephyr/base.html
Zev Benjamin 7b3f5ed14c Add interface for creating and viewing bots
We really should not be storing bot API keys in the DOM and should
require some sort of additional authentication before showing them,
but this seems reasonable for a first pass.

(imported from commit c7d75aa52e21894bf53917457e771c18de38bbcc)
2013-05-11 02:38:32 -04:00

37 lines
1.2 KiB
HTML

<!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>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
<script src="/static/third/bootstrap/js/bootstrap.min.js"></script>
{% compressed_js 'common' %}
{% block customhead %}
{% endblock %}
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>