From c908c9b4978aeb38bb1969a5f6169939a930cfe4 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Tue, 16 Aug 2022 11:20:04 +0000 Subject: [PATCH] urls: Move /why-zulip pages to the corporate folder. --- corporate/urls.py | 2 +- templates/{zerver => corporate}/why-zulip.html | 2 +- templates/{zerver => corporate}/why-zulip.md | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename templates/{zerver => corporate}/why-zulip.html (96%) rename templates/{zerver => corporate}/why-zulip.md (100%) diff --git a/corporate/urls.py b/corporate/urls.py index 91d563b5f4..f3d09968d1 100644 --- a/corporate/urls.py +++ b/corporate/urls.py @@ -68,7 +68,7 @@ landing_page_urls = [ path("attribution/", landing_view, {"template_name": "corporate/attribution.html"}), path("team/", team_view), path("history/", landing_view, {"template_name": "corporate/history.html"}), - path("why-zulip/", landing_view, {"template_name": "zerver/why-zulip.html"}), + path("why-zulip/", landing_view, {"template_name": "corporate/why-zulip.html"}), path("self-hosting/", landing_view, {"template_name": "zerver/self-hosting.html"}), path("security/", landing_view, {"template_name": "zerver/security.html"}), # /for pages diff --git a/templates/zerver/why-zulip.html b/templates/corporate/why-zulip.html similarity index 96% rename from templates/zerver/why-zulip.html rename to templates/corporate/why-zulip.html index bf503025c9..286f0116d5 100644 --- a/templates/zerver/why-zulip.html +++ b/templates/corporate/why-zulip.html @@ -28,7 +28,7 @@
- {{ render_markdown_path('zerver/why-zulip.md') }} + {{ render_markdown_path('corporate/why-zulip.md') }}
diff --git a/templates/zerver/why-zulip.md b/templates/corporate/why-zulip.md similarity index 100% rename from templates/zerver/why-zulip.md rename to templates/corporate/why-zulip.md