mirror of https://github.com/zulip/zulip.git
44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>Zulip: the best group chat for open source projects</title>
|
|
{% endblock %}
|
|
|
|
{% block customhead %}
|
|
{{ super() }}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% stylesheet 'portico' %}
|
|
{% stylesheet 'landing-page' %}
|
|
{{ render_bundle('landing-page') }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
<div class="portico-landing why-page">
|
|
<div class="hero small-hero">
|
|
<h1 class="center">{% trans %}Privacy policy{% endtrans %}</h1>
|
|
</div>
|
|
<div class="main">
|
|
<div class="padded-content">
|
|
<div class="inner-content">
|
|
{% if privacy_policy %}
|
|
{{ render_markdown_path(privacy_policy) }}
|
|
{% else %}
|
|
{% trans %}
|
|
This installation of Zulip does not have a configured privacy policy.
|
|
Contact this <a href="mailto:{{ support_email }}">server's administrator</a>
|
|
if you have any questions.
|
|
{% endtrans %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|