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