2018-10-31 02:23:02 +01:00
|
|
|
|
{% extends "zerver/portico.html" %}
|
2019-10-23 07:46:34 +02:00
|
|
|
|
{% set entrypoint = "landing-page" %}
|
2018-10-31 02:23:02 +01:00
|
|
|
|
|
2022-09-05 17:24:21 +02:00
|
|
|
|
{% set PAGE_TITLE = "Security | Zulip" %}
|
|
|
|
|
|
|
|
|
|
{% set PAGE_DESCRIPTION = "Making sure your information stays protected is our
|
|
|
|
|
highest priority. Learn how Zulip’s security strategy covers all aspects of our
|
|
|
|
|
product and business." %}
|
2018-10-31 02:23:02 +01:00
|
|
|
|
|
|
|
|
|
{% block customhead %}
|
2021-04-21 00:46:14 +02:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2018-10-31 02:23:02 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block portico_content %}
|
|
|
|
|
|
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
|
|
|
|
|
|
<div class="portico-landing why-page">
|
2018-11-01 00:50:57 +01:00
|
|
|
|
<div class="hero bg-pycon security">
|
|
|
|
|
<div class="bg-dimmer"></div>
|
|
|
|
|
<div class="content">
|
2021-05-10 07:02:14 +02:00
|
|
|
|
<h1 class="center">Zulip security</h1>
|
2018-11-01 00:50:57 +01:00
|
|
|
|
<p></p>
|
|
|
|
|
</div>
|
2018-10-31 02:23:02 +01:00
|
|
|
|
</div>
|
2018-11-01 00:50:57 +01:00
|
|
|
|
|
2018-10-31 02:23:02 +01:00
|
|
|
|
<div class="main">
|
|
|
|
|
<div class="padded-content">
|
2019-07-22 19:22:56 +02:00
|
|
|
|
<div class="inner-content markdown">
|
2022-08-16 13:24:56 +02:00
|
|
|
|
{{ render_markdown_path('corporate/security.md') }}
|
2018-10-31 02:23:02 +01:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|