| OLD | NEW | 
|---|
| 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-present eyeo GmbH | 4  Copyright (C) 2017-present 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 help.eyeo.com.  If not, see <http://www.gnu.org/licenses/>. | 17  along with help.eyeo.com.  If not, see <http://www.gnu.org/licenses/>. | 
| 18 --> | 18 --> | 
| 19 <html | 19 <html | 
| 20   lang="{{ locale }}" | 20   lang="{{ locale }}" | 
| 21   dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" | 21   dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" | 
| 22   class="no-js"> | 22   class="no-js"> | 
| 23 <head> | 23 <head> | 
| 24   <meta charset="utf-8"> | 24 | 
| 25   <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-
    fit=no"> | 25   <? include meta/standard ?> | 
| 26   <meta http-equiv="x-ua-compatible" content="ie=edge"> |  | 
| 27 |  | 
| 28   <title>{{ title | translate("page-title", "Meta page title") }}</title> |  | 
| 29 | 26 | 
| 30   <!--[if IE 8]> | 27   <!--[if IE 8]> | 
| 31     <script src="/js/vendor/ie8.min.js"></script> | 28     <script src="/js/vendor/ie8.min.js"></script> | 
| 32   <![endif]--> | 29   <![endif]--> | 
| 33 | 30 | 
| 34   <link rel="stylesheet" href="/css/main.css"> | 31   <link rel="stylesheet" href="/css/main.css"> | 
| 35 | 32 | 
| 36   <!--[if lt IE 9]> | 33   <!--[if lt IE 9]> | 
| 37     <script src="/js/vendor/html5shiv.min.js"></script> | 34     <script src="/js/vendor/html5shiv.min.js"></script> | 
| 38     <script src="/js/vendor/respond.min.js"></script> | 35     <script src="/js/vendor/respond.min.js"></script> | 
| (...skipping 14 matching lines...) Expand all  Loading... | 
| 53     {{ body | safe }} | 50     {{ body | safe }} | 
| 54   {% endblock %} | 51   {% endblock %} | 
| 55   </div> | 52   </div> | 
| 56   {% block footer %} | 53   {% block footer %} | 
| 57     {{ footer | safe }} | 54     {{ footer | safe }} | 
| 58   {% endblock %} | 55   {% endblock %} | 
| 59   <? include layout/footer ?> | 56   <? include layout/footer ?> | 
| 60   <script src="/js/main.js"></script> | 57   <script src="/js/main.js"></script> | 
| 61 </body> | 58 </body> | 
| 62 <html> | 59 <html> | 
| OLD | NEW | 
|---|