Files
zulip/templates/zerver/emails/email_base_default.html
AcKindle3 4544eb4576 email: Replace uri with url in templates and backend.
In #23380 we want to change all ocurrences of `uri` to `url`. This
commit changes the ocurrences of `uri` appeared in files related to
email, including templates (`.html`, `.txt`) and backend (`.py`)
codes.

In `email.md`, `base_images_uri` is changed to `images_base_url` -
the words `base` and `images` are swapped and plural form is added
for `image`.  This is becasue the former is not found anywhere in
the codebase while the later appears a lot. To reduce confusion,
this doccumentation changed accordingly.
2023-04-26 16:37:16 -07:00

52 lines
2.2 KiB
HTML

{% import 'zerver/emails/macros.html' as macros %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width" />
<meta charset="UTF-8" />
<title>Zulip</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" class="body layout">
<tr>
<td>&nbsp;</td>
<td class="container">
<div class="content">
<a href="#" class="illustration">
{% block illustration %}{% endblock %}
</a>
<span class="preheader">
{% block preheader %}{% endblock %}
</span>
<table class="main layout">
<tr>
<td class="wrapper">
<table border="0" cellpadding="0" cellspacing="0" class="layout">
<tr>
<td>
{% block content %}{% endblock %}
</td>
</tr>
</table>
<img class="bottom-illustration" src="{{ email_images_base_url }}/footer.png" alt="{{ _('Swimming fish') }}"/>
</td>
</tr>
</table>
<div class="footer">
<table border="0" cellpadding="0" cellspacing="0" class="layout">
<tr>
<td class="footer-content-block">
<span class="physical-address">{{physical_address}}</span>
{% block manage_preferences %}{% endblock %}
</td>
</tr>
</table>
</div>
</div>
</td>
<td>&nbsp;</td>
</tr>
</table>
</body>
</html>