| 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-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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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 | 24 |
| 25 <? include meta/standard ?> | 25 <? include meta/standard ?> |
| 26 | 26 |
| 27 <!--[if IE 8]> | 27 <!--[if IE 8]> |
| 28 <script src="/js/vendor/ie8.min.js"></script> | 28 <script src="/js/vendor/ie8.min.js"></script> |
| 29 <![endif]--> | 29 <![endif]--> |
| 30 | 30 |
| 31 <link rel="stylesheet" href="/css/main.min.css"> | 31 <link rel="stylesheet" href="/dist/css/main.min.css"> |
| 32 | 32 |
| 33 <!--[if lt IE 9]> | 33 <!--[if lt IE 9]> |
| 34 <script src="/js/vendor/html5shiv.min.js"></script> | 34 <script src="/js/vendor/html5shiv.min.js"></script> |
| 35 <script src="/js/vendor/respond.min.js"></script> | 35 <script src="/js/vendor/respond.min.js"></script> |
| 36 <![endif]--> | 36 <![endif]--> |
| 37 | 37 |
| 38 <!--[if lt IE 10]> | 38 <!--[if lt IE 10]> |
| 39 <script src="/js/vendor/classList.min.js"></script> | 39 <script src="/js/vendor/classList.min.js"></script> |
| 40 <script src="/js/vendor/element-closest.min.js"></script> | 40 <script src="/js/vendor/element-closest.min.js"></script> |
| 41 <![endif]--> | 41 <![endif]--> |
| 42 | 42 |
| 43 {% block head %} | 43 {% block head %} |
| 44 {{ head | safe }} | 44 {{ head | safe }} |
| 45 {% endblock %} | 45 {% endblock %} |
| 46 </head> | 46 </head> |
| 47 <body> | 47 <body> |
| 48 <? include layout/header ?> | 48 <? include layout/header ?> |
| 49 <div class="outer"> | 49 <div class="outer"> |
| 50 {% block body %} | 50 {% block body %} |
| 51 {{ body | safe }} | 51 {{ body | safe }} |
| 52 {% endblock %} | 52 {% endblock %} |
| 53 </div> | 53 </div> |
| 54 {% block footer %} | 54 {% block footer %} |
| 55 {{ footer | safe }} | 55 {{ footer | safe }} |
| 56 {% endblock %} | 56 {% endblock %} |
| 57 <? include layout/footer ?> | 57 <? include layout/footer ?> |
| 58 {% block scripts %} | 58 {% block scripts %} |
| 59 {{ scripts | safe }} | 59 {{ scripts | safe }} |
| 60 {% endblock %} | 60 {% endblock %} |
| 61 <script src="/js/main.min.js"></script> | 61 <script src="/dist/js/main.min.js"></script> |
| 62 </body> | 62 </body> |
| 63 <html> | 63 <html> |
| LEFT | RIGHT |