| OLD | NEW |
| 1 {# | 1 {# |
| 2 # This file is part of acceptableads.org. | 2 # This file is part of acceptableads.org. |
| 3 # Copyright (C) 2016 Eyeo GmbH | 3 # Copyright (C) 2016 Eyeo GmbH |
| 4 # | 4 # |
| 5 # acceptableads.org is free software: you can redistribute it and/or modify | 5 # acceptableads.org is free software: you can redistribute it and/or modify |
| 6 # it under the terms of the GNU General Public License as published by | 6 # it under the terms of the GNU General Public License as published by |
| 7 # the Free Software Foundation, either version 3 of the License, or | 7 # the Free Software Foundation, either version 3 of the License, or |
| 8 # (at your option) any later version. | 8 # (at your option) any later version. |
| 9 # | 9 # |
| 10 # acceptableads.org is distributed in the hope that it will be useful, | 10 # acceptableads.org is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. | 13 # GNU General Public License for more details. |
| 14 # | 14 # |
| 15 # You should have received a copy of the GNU General Public License | 15 # You should have received a copy of the GNU General Public License |
| 16 # along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. | 16 # along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. |
| 17 #}<!DOCTYPE html> | 17 #}<!DOCTYPE html> |
| 18 <html lang="{{locale}}" dir="{{"rtl" if config.has_option("rtl", locale) else "l
tr"}}" class="js"> | 18 <html lang="{{locale}}" dir="{{"rtl" if config.has_option("rtl", locale) else "l
tr"}}" class="js"> |
| 19 <head> | 19 <head> |
| 20 <? include meta ?> | 20 <? include meta ?> |
| 21 <? include resources ?> | 21 <? include resources ?> |
| 22 <? include meta/ie ?> | 22 <? include meta/ie ?> |
| 23 {% block head %}{% endblock %} | 23 {% block head %}{% endblock %} |
| 24 {{head|safe}} | 24 {{head|safe}} |
| 25 | |
| 26 {# | |
| 27 # This style and #notification need to be removed on 2017-04-10 (see #5004) | |
| 28 #} | |
| 29 <style type="text/css"> | |
| 30 #notification | |
| 31 { | |
| 32 padding: 10px 20px; | |
| 33 text-align: center; | |
| 34 background-color: #FFFF99; | |
| 35 } | |
| 36 | |
| 37 @media (min-width: 1200px) | |
| 38 { | |
| 39 #notification | |
| 40 { | |
| 41 width: 100%; | |
| 42 height: 40px; | |
| 43 position: fixed; | |
| 44 z-index: 3; | |
| 45 top: 0px; | |
| 46 left: 0px; | |
| 47 } | |
| 48 | |
| 49 #sidebar | |
| 50 { | |
| 51 top: 40px !important; | |
| 52 } | |
| 53 | |
| 54 #secondary-navigation | |
| 55 { | |
| 56 bottom: 40px !important; | |
| 57 } | |
| 58 | |
| 59 #navbar | |
| 60 { | |
| 61 top: 40px !important; | |
| 62 } | |
| 63 | |
| 64 #breadcrumbs | |
| 65 { | |
| 66 top: 104px; | |
| 67 } | |
| 68 | |
| 69 .outer | |
| 70 { | |
| 71 top: 136px; | |
| 72 } | |
| 73 } | |
| 74 </style> | |
| 75 </head> | 25 </head> |
| 76 <body> | 26 <body> |
| 77 <? include navbar ?> | 27 <? include navbar ?> |
| 78 <div class="outer"> | 28 <div class="outer"> |
| 79 <div id="notification"> | |
| 80 Applications submitted between March 13-16 have not been received by eyeo
due to an issue with our servers. Please re-submit your application {{ "committe
e/apply" | linkify }}here</a>. | |
| 81 </div> | |
| 82 {% if not custom %} | 29 {% if not custom %} |
| 83 <div class="container"> | 30 <div class="container"> |
| 84 {% endif %} | 31 {% endif %} |
| 85 {% block blog %} | 32 {% block blog %} |
| 86 {{body|safe}} | 33 {{body|safe}} |
| 87 {% endblock %} | 34 {% endblock %} |
| 88 {% if not custom %} | 35 {% if not custom %} |
| 89 </div> | 36 </div> |
| 90 {% endif %} | 37 {% endif %} |
| 91 <? include footer ?> | 38 <? include footer ?> |
| 92 </div> | 39 </div> |
| 93 <? include breadcrumbs ?> | 40 <? include breadcrumbs ?> |
| 94 <? include sidebar ?> | 41 <? include sidebar ?> |
| 95 <script src="/js/main.js"></script> | 42 <script src="/js/main.js"></script> |
| 96 </body> | 43 </body> |
| 97 </html> | 44 </html> |
| OLD | NEW |