From 057f9bafb032bf4c340d11dc7c222cce41e5e3eb Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Mon, 18 Sep 2017 12:02:34 -0700 Subject: [PATCH] Restyle privacy page to look like /for/ and "why" pages. This restyles the privacy page from an older style to a new updated style with the mini-hero and naturally readable width text. --- templates/zerver/privacy.html | 45 +++++++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 12 deletions(-) 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 %}