Line | |
---|
1 | {% import "js_helpers.html.twig" as js %} |
---|
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{current_user.lang}}" lang="{{current_user.lang}}"> |
---|
4 | <head> |
---|
5 | {% block header %} |
---|
6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
---|
7 | <title>{% block title %}{{page_title}} - {% if current_blog.name is not empty %}{{current_blog.name}} - {% endif %}{{vendor_name}} - {{version}}{% endblock %}</title> |
---|
8 | <meta name="ROBOTS" content="NOARCHIVE,NOINDEX,NOFOLLOW" /> |
---|
9 | <meta name="GOOGLEBOT" content="NOSNIPPET" /> |
---|
10 | <link rel="stylesheet" href="{{theme_url}}style/default.css" type="text/css" media="screen" /> |
---|
11 | {% if rtl is not empty %} |
---|
12 | <link rel="stylesheet" href="{{theme_url}}style/default-rtl.css" type="text/css" media="screen" /> |
---|
13 | {% endif %} |
---|
14 | {{ js.load_IE7 }} |
---|
15 | {{ js.common }} |
---|
16 | {% endblock %} |
---|
17 | </head> |
---|
18 | |
---|
19 | <body id="dotclear-admin" class="popup"> |
---|
20 | <div id="top"><h1>{{ vendor_name }}</h1></div> |
---|
21 | <div id="wrapper"> |
---|
22 | <div id="main"> |
---|
23 | <div id="content"> |
---|
24 | {% block content %} |
---|
25 | <h2>{{current_blog.name}} › <span class="page-title">{{page_title}}</span></h2> |
---|
26 | {% if page_message is not empty %} |
---|
27 | <p class="message">{{page_message}}</p> |
---|
28 | {% endif %} |
---|
29 | {% if page_errors is not empty %} |
---|
30 | <div class="error"> |
---|
31 | <p><strong>Errors :</strong></p> |
---|
32 | <ul> |
---|
33 | {% for error in page_errors %} |
---|
34 | <li>{{error}}</li> |
---|
35 | {% endfor %} |
---|
36 | </ul> |
---|
37 | </div> |
---|
38 | {% endif %} |
---|
39 | {% endblock %} |
---|
40 | </div> |
---|
41 | </div> |
---|
42 | <div id="footer"> |
---|
43 | {% block footer %} |
---|
44 | <p> </p> |
---|
45 | {% endblock %} |
---|
46 | </div> |
---|
47 | </div> |
---|
48 | </body> |
---|
49 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.