Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 This file is part of help.eyeo.com. | 3 This file is part of help.eyeo.com. |
4 Copyright (C) 2017 Eyeo GmbH | 4 Copyright (C) 2017 Eyeo GmbH |
5 | 5 |
6 help.eyeo.com is free software: you can redistribute it and/or modify | 6 help.eyeo.com is free software: you can redistribute it and/or modify |
7 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
8 the Free Software Foundation, either version 3 of the License, or | 8 the Free Software Foundation, either version 3 of the License, or |
9 (at your option) any later version. | 9 (at your option) any later version. |
10 | 10 |
11 help.eyeo.com is distributed in the hope that it will be useful, | 11 help.eyeo.com is distributed in the hope that it will be useful, |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 GNU General Public License for more details. | 14 GNU General Public License for more details. |
15 | 15 |
16 You should have received a copy of the GNU General Public License | 16 You should have received a copy of the GNU General Public License |
17 along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. | 17 along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. |
18 --> | 18 --> |
19 <html | 19 <html |
20 lang="{{ locale }}" | 20 lang="{{ locale }}" |
juliandoucette
2017/07/03 15:37:55
Note: I'm probably going to include these html-att
ire
2017/07/04 09:33:17
Haha no I don't think you're going too far. In thi
| |
21 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> | 21 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> |
22 <head> | 22 <head> |
23 <meta charset="utf-8"> | 23 <meta charset="utf-8"> |
juliandoucette
2017/07/03 15:37:55
Like I mentioned in the last patchset, these are i
ire
2017/07/04 09:33:17
No problem. See my comment about swapping these ou
| |
24 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to- fit=no"> | 24 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to- fit=no"> |
25 <meta http-equiv="x-ua-compatible" content="ie=edge"> | 25 <meta http-equiv="x-ua-compatible" content="ie=edge"> |
26 | 26 |
27 <title>{{ title | translate("page-title", "Meta page title") }}</title> | 27 <title>{{ title | translate("page-title", "Meta page title") }}</title> |
28 | 28 |
29 <!--[if IE 8]> | 29 <!--[if IE 8]> |
juliandoucette
2017/07/03 15:37:56
Like I mentioned in the vendor css, I think should
ire
2017/07/04 09:33:17
Acknowledged.
| |
30 <script src="js/vendor/ie8.js"></script> | 30 <script src="js/vendor/ie8.js"></script> |
31 <![endif]--> | 31 <![endif]--> |
32 | 32 |
33 <link rel="stylesheet" href="css/main.css"> | 33 <link rel="stylesheet" href="css/main.css"> |
34 | 34 |
35 <!--[if lt IE 9]> | 35 <!--[if lt IE 9]> |
juliandoucette
2017/07/03 15:37:55
See comment above (ie8.js).
ire
2017/07/04 09:33:17
Acknowledged.
| |
36 <script src="js/vendor/html5shiv.js"></script> | 36 <script src="js/vendor/html5shiv.js"></script> |
37 <script src="js/vendor/respond.min.js"></script> | 37 <script src="js/vendor/respond.min.js"></script> |
38 <![endif]--> | 38 <![endif]--> |
39 | 39 |
40 {{ head | safe }} | 40 {% block head %} |
juliandoucette
2017/07/03 15:37:55
I don't think {{ head | safe }} does anything with
ire
2017/07/04 09:33:17
Done. That's me not understanding how the cms work
| |
41 {{ head | safe }} | |
42 {% endblock %} | |
41 </head> | 43 </head> |
42 <body> | 44 <body> |
43 {{ body | safe }} | 45 {% block body %} |
juliandoucette
2017/07/03 15:37:55
I don't think you can extend the body in a child t
ire
2017/07/04 09:33:17
Done.
| |
46 {{ body | safe }} | |
47 {% endblock %} | |
44 </body> | 48 </body> |
45 <html> | 49 <html> |
LEFT | RIGHT |