From 87a295677e0bd6382b0ce6df390ea624b94f706b Mon Sep 17 00:00:00 2001 From: Alya Abbott Date: Tue, 30 Aug 2022 16:16:11 -0700 Subject: [PATCH] portico: Fix title and description for /attribution. --- templates/corporate/attribution.html | 7 +++++-- zerver/tests/test_docs.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/templates/corporate/attribution.html b/templates/corporate/attribution.html index dff92a7285..f162fd2680 100644 --- a/templates/corporate/attribution.html +++ b/templates/corporate/attribution.html @@ -2,9 +2,12 @@ {% set entrypoint = "landing-page" %} {% block title %} -Zulip: The best group chat for your business. +Zulip attributions {% endblock %} +{% set OPEN_GRAPH_TITLE = 'Zulip website attributions' %} +{% set OPEN_GRAPH_DESCRIPTION = '' %} + {% block customhead %} {% endblock %} @@ -17,7 +20,7 @@
-

Attributions

+

Website attributions

  • On /for/business page: diff --git a/zerver/tests/test_docs.py b/zerver/tests/test_docs.py index 49a369a96f..82132ab055 100644 --- a/zerver/tests/test_docs.py +++ b/zerver/tests/test_docs.py @@ -174,7 +174,7 @@ class DocPageTest(ZulipTestCase): self._test("/for/communities/", "Zulip for communities") self._test("/self-hosting/", "Self-host Zulip") self._test("/security/", "TLS encryption") - self._test("/attribution/", "Attributions") + self._test("/attribution/", "Website attributions") self._test("/devlogin/", "Normal users", landing_page=False) self._test("/devtools/", "Useful development URLs") self._test("/errors/404/", "Page not found")