]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/messages/base.html
959a314810e26e9f1f6fbd3e62fbf44d45a01eb3
[ipfire.org.git] / src / templates / messages / base.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <base href="https://www.ipfire.org/">
5 <meta name="viewport" content="width=device-width">
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>{% block title %}{% end block %}</title>
8 <style media="all" type="text/css">
9 {% include "main.css" %}
10 </style>
11 </head>
12
13 <body>
14 <span class="preheader">{% block preheader %}{% end preheader %}</span>
15 <table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
16 <tr>
17 <td class="container">
18 <div class="content">
19 {% block container %}
20 <table role="presentation" class="main">
21 <tr>
22 <td class="logo">
23 <img src="/static/img/ipfire-tux.png" alt="{{ _("IPFire Logo") }}">
24 </td>
25 </tr>
26 <tr>
27 <td class="wrapper">
28 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
29 <tr>
30 <td>
31 {% block content %}{% end block %}
32 </td>
33 </tr>
34 </table>
35 </td>
36 </tr>
37 </table>
38 {% end block %}
39
40 <div class="footer">
41 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
42 <tr>
43 <td class="content-block">
44 <span class="apple-link">{{ _("The IPFire Project" )}}</span>
45
46 <br>
47
48 {% block footer %}
49 {{ _("Don't like these emails?") }}
50 <a href="https://people.ipfire.org/">{{ _("Unsubscribe") }}</a>.
51 {% end block %}
52 </td>
53 </tr>
54 </table>
55 </div>
56 </div>
57 </td>
58 </tr>
59 </table>
60 </body>
61 </html>