mirror of https://github.com/zulip/zulip.git
meta tags: Use open graph titles/descriptions.
Apparently, we were incorrectly using constants for title/description rather than the nice non-constant values from og:title and og:description in our meta tags.
This commit is contained in:
parent
cc93044cd1
commit
b494b16791
|
@ -7,9 +7,13 @@
|
|||
<meta charset="UTF-8">
|
||||
{% block title %}
|
||||
{% if user_profile and user_profile.realm.name %}
|
||||
<title>{{user_profile.realm.name}} - Zulip</title>
|
||||
<title>{{user_profile.realm.name}} - Zulip</title>
|
||||
{% else %}
|
||||
<title>Zulip</title>
|
||||
{% if OPEN_GRAPH_TITLE %}
|
||||
<title>{{ OPEN_GRAPH_TITLE }}</title>
|
||||
{% else %}
|
||||
<title>Zulip</title>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
<link id="favicon" rel="icon" href="/static/images/favicon.svg?v=4">
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
<!-- Google / Search Engine Tags -->
|
||||
{% if allow_search_engine_indexing %}
|
||||
<meta name="description" content="Zulip combines the immediacy of real-time chat with an email threading model. With Zulip, you can catch up on important conversations while ignoring irrelevant ones.">
|
||||
{% if OPEN_GRAPH_DESCRIPTION %}
|
||||
<meta name="description" content="{{ OPEN_GRAPH_DESCRIPTION }}">
|
||||
{% else %}
|
||||
<meta name="description" content="Zulip combines the immediacy of real-time chat with an email threading model. With Zulip, you can catch up on important conversations while ignoring irrelevant ones.">
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<meta name="robots" content="noindex,nofollow">
|
||||
<meta name="robots" content="noindex,nofollow">
|
||||
{% endif %}
|
||||
|
||||
<!-- Open Graph / Facebook / Twitter Meta Tags -->
|
||||
|
|
|
@ -75,7 +75,8 @@ class DocPageTest(ZulipTestCase):
|
|||
for s in landing_missing_strings:
|
||||
self.assertNotIn(s, str(result.content))
|
||||
if not doc_html_str:
|
||||
self.assert_in_success_response(['<meta name="description" content="Zulip combines'], result)
|
||||
# Every page has a meta-description
|
||||
self.assert_in_success_response(['<meta name="description" content="'], result)
|
||||
self.assert_not_in_success_response(['<meta name="robots" content="noindex,nofollow">'], result)
|
||||
|
||||
# Test the URL on the "zephyr" subdomain with the landing page setting
|
||||
|
|
Loading…
Reference in New Issue