OLD | NEW |
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 <nav> | 93 <nav> |
94 <ul> | 94 <ul> |
95 {% if localefile == "index" %} | 95 {% if localefile == "index" %} |
96 <li class="selected first">{{get_string("installation", "menu")}}</l
i> | 96 <li class="selected first">{{get_string("installation", "menu")}}</l
i> |
97 {% else %} | 97 {% else %} |
98 <li class="install-link first">{{"index"|linkify}}{{get_string("inst
allation", "menu")}} <span class="sprite install-link-icon"></span></a></li> | 98 <li class="install-link first">{{"index"|linkify}}{{get_string("inst
allation", "menu")}} <span class="sprite install-link-icon"></span></a></li> |
99 {% endif %} | 99 {% endif %} |
100 {% for name in ["about", "features", "bugs", "contribute"] %} | 100 {% for name in ["about", "features", "bugs", "contribute"] %} |
101 {{pageitem(name)}} | 101 {{pageitem(name)}} |
102 {% endfor %} | 102 {% endfor %} |
103 <li id="search"> | |
104 <form action="https://www.google.com/cse" id="search-box"> | |
105 <input name="cx" value="001123836313771357446:qg27swycb5q" type="h
idden"> | |
106 <input name="ie" value="UTF-8" type="hidden"> | |
107 <label id="search-field-label-plain" for="search-field">{{get_stri
ng("search", "menu")}}</label> | |
108 <input id="search-field" name="q" type="search"> | |
109 <label id="search-field-label-button" for="search-field"> | |
110 <button id="search-button" type="submit">{{get_string("search",
"menu")}}</button> | |
111 </label> | |
112 </form> | |
113 </li> | |
114 <li id="language"> | 103 <li id="language"> |
115 <div id="current-language"> | 104 <div id="current-language"> |
116 <div id="flag-{{locale}}" class="flag sprite"></div> | 105 <div id="flag-{{locale}}" class="flag sprite"></div> |
117 <span id="language-arrow" class="sprite"></span> | 106 <span id="language-arrow" class="sprite"></span> |
118 </div> | 107 </div> |
119 <ul id="language-selector"> | 108 <ul id="language-selector"> |
120 {% for lang in available_locales %} | 109 {% for lang in available_locales %} |
121 <li class="language-entry"> | 110 <li class="language-entry"> |
122 {{page|linkify(lang)}} | 111 {{page|linkify(lang)}} |
123 <div id="flag-{{lang}}" class="flag sprite"></div>{{config.g
et("langnames", lang)}} | 112 <div id="flag-{{lang}}" class="flag sprite"></div>{{config.g
et("langnames", lang)}} |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p
lus.google.com/110020691898167279887"></a> | 199 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p
lus.google.com/110020691898167279887"></a> |
211 </li> | 200 </li> |
212 </ul> | 201 </ul> |
213 </section> | 202 </section> |
214 </div> | 203 </div> |
215 </footer> | 204 </footer> |
216 | 205 |
217 <script src="/js/main.js"></script> | 206 <script src="/js/main.js"></script> |
218 </body> | 207 </body> |
219 </html> | 208 </html> |
OLD | NEW |