LEFT | RIGHT |
1 {# | 1 {# |
2 # This file is part of the Adblock Plus website, | 2 # This file is part of the Adblock Plus website, |
3 # Copyright (C) 2006-present eyeo GmbH | 3 # Copyright (C) 2006-present eyeo GmbH |
4 # | 4 # |
5 # Adblock Plus is free software: you can redistribute it and/or modify | 5 # Adblock Plus is free software: you can redistribute it and/or modify |
6 # it under the terms of the GNU General Public License version 3 as | 6 # it under the terms of the GNU General Public License version 3 as |
7 # published by the Free Software Foundation. | 7 # published by the Free Software Foundation. |
8 # | 8 # |
9 # Adblock Plus is distributed in the hope that it will be useful, | 9 # Adblock Plus is distributed in the hope that it will be useful, |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 | 79 |
80 {% macro pageitem(name) %} | 80 {% macro pageitem(name) %} |
81 {% if name == page %} | 81 {% if name == page %} |
82 <li class="selected">{{get_string(name, "menu")}}</li> | 82 <li class="selected">{{get_string(name, "menu")}}</li> |
83 {% else %} | 83 {% else %} |
84 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li> | 84 <li>{{name|linkify}}{{get_string(name, "menu")}}</a></li> |
85 {% endif %} | 85 {% endif %} |
86 {% endmacro %} | 86 {% endmacro %} |
87 | 87 |
88 <nav id="navbar"> | 88 <nav id="navbar"> |
89 <div class="container"> | 89 <div class="navbar-container"> |
90 {{ "index" | linkify(id="navbar-logo") }} | 90 {{ "index" | linkify(id="navbar-logo") }} |
91 <img | 91 <img |
92 src="/img/navbar-logo.png" | 92 src="/img/navbar-logo.png" |
93 srcset="/img/navbar-logo.svg 2x"> | 93 srcset="/img/navbar-logo.svg 2x"> |
94 <span>{{ "Adblock <strong>Plus</strong>" | translate("navbar-logo-text
", "Navbar logo text") }}</span> | 94 <span>{{ "Adblock <strong>Plus</strong>" | translate("navbar-logo-text
", "Navbar logo text") }}</span> |
95 </a> | 95 </a> |
96 <a href="#" id="navbar-menu-toggle"> | 96 <a href="#" id="navbar-menu-toggle"> |
97 <img | 97 <img |
98 src="/img/menu-toggle.png" | 98 src="/img/menu-toggle.png" |
99 srcset="/img/menu-toggle.svg 2x"> | 99 srcset="/img/menu-toggle.svg 2x"> |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p
lus.google.com/110020691898167279887"></a> | 201 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p
lus.google.com/110020691898167279887"></a> |
202 </li> | 202 </li> |
203 </ul> | 203 </ul> |
204 </section> | 204 </section> |
205 </div> | 205 </div> |
206 </footer> | 206 </footer> |
207 | 207 |
208 <script src="/js/main.js"></script> | 208 <script src="/js/main.js"></script> |
209 </body> | 209 </body> |
210 </html> | 210 </html> |
LEFT | RIGHT |