mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
The alt text of the leading images were displayed as preview content in inbox by email clients like gmail. Since the leading images were used mostly for decoration this made the preview content gibberish. It's fine to set the alt attributes to empty from accessibility point of view since the old alt attributes did't added any meaningful information.
37 lines
1.7 KiB
HTML
37 lines
1.7 KiB
HTML
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_uri }}/day2_1.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{{ _("Hey,") }}</p>
|
|
|
|
<p>{{ _("I wanted to share one last thing with you: a few tips about topics, since mastering topics is a key part of being a Zulip power user.") }}</p>
|
|
|
|
<img src="{{ email_images_base_uri }}/day2_2.png" alt="{{ _('Examples of short topics') }}"/>
|
|
|
|
<p>{{ _("Topics are like email subject lines. The big difference, though, is that they're really short and lightweight. Two or three words will do it. Don't overthink 'em—you can always edit the message later!") }}</p>
|
|
|
|
<ul>
|
|
<li>{{ _("Good topics: design mockup, Bug 345, acme burgers") }}</li>
|
|
<li>{% trans %}Not recommended: "What do people think of this new design mockup?", "I'm looking at Bug 345", "Is Acme Burgers open for lunch?"{% endtrans %}</li>
|
|
</ul>
|
|
|
|
<img src="{{ email_images_base_uri }}/day2_3.png" alt="{{ _('Example of a topic that is too long') }}"/>
|
|
|
|
<p>{{ _("Why bother with topics? Well, two reasons: it makes conversations clearer (imagine if email didn't have them!), and it lets you more efficiently catch up on what's happened while you're away—read the topics that are relevant to you, and ignore the ones that aren't!") }}</p>
|
|
|
|
<p><a href="{{ realm_uri }}">{{ _("Take it for a spin now.") }}</a></p>
|
|
|
|
<p>{{ _("Thanks,") }}<br />{{ _("Zulip") }}</p>
|
|
{% endblock %}
|
|
|
|
{% block manage_preferences %}
|
|
|
|
<p>
|
|
<a href="{{ realm_uri }}/#settings/notifications">{{ _("Manage email preferences") }}</a> |
|
|
<a href="{{ unsubscribe_link }}">{{ _("Unsubscribe from welcome emails") }}</a>
|
|
</p>
|
|
{% endblock %}
|