diff --git a/templates/zerver/privacy.html b/templates/zerver/privacy.html index 7176fc3bff..69df5d851b 100644 --- a/templates/zerver/privacy.html +++ b/templates/zerver/privacy.html @@ -1,22 +1,43 @@ {% extends "zerver/portico.html" %} -{# Privacy policy. #} +{% block title %} +Zulip: the best group chat for open source projects +{% endblock %} + +{% block customhead %} +{{ super() }} + + +{% stylesheet 'portico' %} +{% stylesheet 'landing-page' %} +{{ render_bundle('landing-page') }} + +{% endblock %} {% block portico_content %} -
-
+{% include 'zerver/landing_nav.html' %} - {% if privacy_policy %} - {{ render_markdown_path(privacy_policy) }} - {% else %} - {% trans %} - This installation of Zulip does not have a configured privacy policy. - Contact this server's administrator - if you have any questions. - {% endtrans %} - {% endif %} +
+
+

{% trans %}Privacy policy{% endtrans %}

+
+
+
+
+ {% if privacy_policy %} + {{ render_markdown_path(privacy_policy) }} + {% else %} + {% trans %} + This installation of Zulip does not have a configured privacy policy. + Contact this server's administrator + if you have any questions. + {% endtrans %} + {% endif %} +
+
+ {% endblock %}