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