]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/email_base.html
Remove footer link to squatted domain
[osqa.git] / forum / skins / default / templates / email_base.html
1 {% load extra_filters %}
2 {% load extra_tags %}
3 {% load email_tags %}
4 {% load i18n %}
5
6 <html xmlns="http://www.w3.org/1999/xhtml">
7     <head>
8         <style type="text/css">
9             body {
10                 background: #FFF;
11                 font-size: 12px;
12                 line-height: 150%;
13                 margin: 0;
14                 padding: 0;
15                 color: #000;
16                 font-family: sans-serif;
17             }
18
19             #wrapper {
20                 width: 600px;
21                 margin: auto;
22                 padding: 0;
23             }
24
25             a img {
26                 border: none;
27             }
28         </style>
29     </head>
30     <body>
31         <a href="{% fullurl index %}">
32             <img src="cid:logo" title="{% trans "home" %}" alt="{{settings.APP_TITLE}} logo"/>
33         </a>
34         <br />
35         <p>{{ settings.APP_TITLE }}</p>
36     <br /><br />
37     <div id="wrapper">
38             <div id="room">
39                 <div id="CALeft">
40                     {% block content%}
41                     {% endblock%}
42                 </div>
43             </div>
44             <div class="spacer3"></div>
45         </div>
46     </body>
47 </html>