LEFT | RIGHT |
(no file at all) | |
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 <? include layout/header ?> | 47 <? include layout/header ?> |
48 <div class="outer"> | 48 <div class="outer"> |
49 {% block body %} | 49 {% block body %} |
50 {{ body | safe }} | 50 {{ body | safe }} |
51 {% endblock %} | 51 {% endblock %} |
52 </div> | 52 </div> |
53 {% block footer %} | 53 {% block footer %} |
54 {{ footer | safe }} | 54 {{ footer | safe }} |
55 {% endblock %} | 55 {% endblock %} |
56 <? include layout/footer ?> | 56 <? include layout/footer ?> |
| 57 {% block scripts %} |
| 58 {{ scripts | safe }} |
| 59 {% endblock %} |
57 <script src="/js/main.js"></script> | 60 <script src="/js/main.js"></script> |
58 </body> | 61 </body> |
59 <html> | 62 <html> |
LEFT | RIGHT |