Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 <!DOCTYPE html> | 1 {% extends "templates/minimal" %} |
2 <!-- | |
3 This file is part of help.eyeo.com. | |
4 Copyright (C) 2017 Eyeo GmbH | |
5 | 2 |
6 help.eyeo.com is free software: you can redistribute it and/or modify | 3 {% block body %} |
7 it under the terms of the GNU General Public License as published by | 4 {{ body | safe }} |
8 the Free Software Foundation, either version 3 of the License, or | 5 {% endblock %} |
9 (at your option) any later version. | |
10 | 6 |
11 help.eyeo.com is distributed in the hope that it will be useful, | 7 {% block footer %} |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. | |
18 --> | |
19 <html | |
20 lang="{{ locale }}" | |
21 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> | |
22 <head> | |
23 <meta charset="utf-8"> | |
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"> | |
26 | |
27 <title>{{ title | translate("page-title", "Meta page title") }}</title> | |
28 | |
29 <!--[if IE 8]> | |
30 <script src="/js/vendor/ie8.js"></script> | |
31 <![endif]--> | |
32 | |
33 <link rel="stylesheet" href="/css/main.css"> | |
34 | |
35 <!--[if lt IE 9]> | |
36 <script src="/js/vendor/html5shiv.js"></script> | |
37 <script src="/js/vendor/respond.min.js"></script> | |
38 <![endif]--> | |
39 | |
40 {% block head %} | |
41 {{ head | safe }} | |
42 {% endblock %} | |
43 </head> | |
44 <body> | |
45 <? include layout/header ?> | |
46 <div class="outer"> | |
47 {% block body %} | |
48 {{ body | safe }} | |
49 {% endblock %} | |
50 <? include contact ?> | 8 <? include contact ?> |
juliandoucette
2017/08/30 11:33:06
This section doesn't exist on all pages (e.g. Impr
ire
2017/09/25 08:47:35
Done.
| |
51 </div> | 9 {% endblock %} |
52 <script src="/js/main.js"></script> | |
53 </body> | |
54 <html> | |
LEFT | RIGHT |