mirror of https://github.com/zulip/zulip.git
52 lines
2.2 KiB
HTML
52 lines
2.2 KiB
HTML
{% import 'zerver/emails/compiled/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">
|
|
<tr>
|
|
<td> </td>
|
|
<td class="container wide-container">
|
|
<div class="content wide-content">
|
|
<a href="#" class="illustration">
|
|
{% block illustration %}{% endblock %}
|
|
</a>
|
|
<span class="preheader">
|
|
{% block preheader %}{% endblock %}
|
|
</span>
|
|
<table class="main">
|
|
<tr>
|
|
<td class="wrapper">
|
|
<table border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td>
|
|
{% block content %}{% endblock %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<img src="{{ email_images_base_uri }}/footer.png" alt="{{ _('Swimming fish') }}"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="footer">
|
|
<table border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td class="content-block">
|
|
<span class="apple-link">{{physical_address}}</span>
|
|
{% block manage_preferences %}{% endblock %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td> </td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|