mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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.
52 lines
2.2 KiB
HTML
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> </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> </td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|