Commit | Line | Data |
---|---|---|
6a6650bf OL |
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> | |
3 | <head> | |
4 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
5 | <title>{% block title %}AUF - {{ AUF_SITE }}{% endblock %}</title> | |
7fbd9cba OL |
6 | <link rel="icon" type="image/png" href="{{ STATIC_URL }}skin/images/favicon.ico" /> |
7 | <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}skin/css/auf.css" media="all"/> | |
6a6650bf OL |
8 | {% block extrahead %}{% endblock %} |
9 | </head> | |
10 | ||
11 | <body class="{% block bodyclass %}{% endblock %}"> | |
12 | ||
13 | <div id="header"> | |
14 | ||
15 | <div id="logo"> | |
7fbd9cba | 16 | <img src="{{ STATIC_URL }}skin/images/logo_auf.gif" alt="AUF"/> |
6a6650bf OL |
17 | <h1>{% block titre %}{{ AUF_SITE }}{% endblock %}</h1> |
18 | <h2>{% block sous_titre %}{% endblock %}</h2> | |
19 | </div> | |
20 | ||
21 | <div id="user-actions"> | |
22 | {% include "actions.html" %} | |
23 | </div> | |
24 | ||
25 | </div> | |
26 | ||
27 | <div id="menu"> | |
28 | {% include "menu.html" %} | |
29 | </div> | |
30 | ||
31 | {% if breadcrumb %} | |
32 | <div id="breadcrumb"> | |
33 | {% include "breadcrumb.html" %} | |
34 | </div> | |
35 | {% endif %} | |
36 | ||
37 | <div class="visualClear"></div> | |
38 | ||
39 | {% if messages %} | |
40 | <ul class="messagelist"> | |
41 | {% for message in messages %} | |
42 | <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li> | |
43 | {% endfor %} | |
44 | </ul> | |
45 | {% endif %} | |
46 | ||
47 | <div class="visualClear"></div> | |
48 | ||
49 | ||
50 | <div id="main"> | |
51 | {% block main %} | |
52 | {% endblock %} | |
53 | </div> | |
54 | ||
55 | <div id="footer"> | |
56 | {% include "footer.html" %} | |
57 | </div> | |
58 | ||
59 | </body> | |
60 | </html> |