mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
Since we use katex only in the main webapp, we don't need it in things like landing page etc, so it is better to move it to index.html.
41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang='{{LANGUAGE_CODE}}'>
|
|
|
|
{# Base template for the whole site. #}
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{% block title %}
|
|
{% if user_profile and user_profile.realm.name %}
|
|
<title>{{user_profile.realm.name}} - Zulip</title>
|
|
{% else %}
|
|
<title>Zulip</title>
|
|
{% endif %}
|
|
{% endblock %}
|
|
<link href="/static/favicon.ico?v=2" rel="shortcut icon">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
|
|
{% if dropboxAppKey %}
|
|
<script type="text/javascript">var dropboxAppKey = "{{ dropboxAppKey }}";</script>
|
|
{% endif %}
|
|
|
|
{# We need to import jQuery before Bootstrap #}
|
|
{% stylesheet 'common' %}
|
|
{% 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 %}
|
|
{{ render_bundle('common') }}
|
|
{% block customhead %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
|
|
</html>
|