mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
This reverses the policy that was set, but incompletely enforced, by
commit 951514dd7d. The self-closing tag
syntax is clearer, more consistent, simpler to parse, compatible with
XML, preferred by Prettier, and (most importantly now) required by
FormatJS.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
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 %}
|