]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/messages/base.html
messages: Do not show unsubscribe link in transactional emails
[ipfire.org.git] / src / templates / messages / base.html
CommitLineData
05873be1
MT
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
4386f5cc 48 {% block footer %}{% end block %}
05873be1
MT
49 </td>
50 </tr>
51 </table>
52 </div>
53 </div>
54 </td>
55 </tr>
56 </table>
57 </body>
58</html>