Left: | ||
Right: |
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-2015 Eyeo GmbH | 3 # Copyright (C) 2006-2015 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
71 {% for lang in available_locales %} | 71 {% for lang in available_locales %} |
72 <option | 72 <option |
73 {% if locale == lang %}selected="selected"{% endif %} | 73 {% if locale == lang %}selected="selected"{% endif %} |
74 value="{{source.resolve_link(page, lang)[1]}}"> | 74 value="{{source.resolve_link(page, lang)[1]}}"> |
75 {{config.get("langnames", lang)}} | 75 {{config.get("langnames", lang)}} |
76 </option> | 76 </option> |
77 {% endfor %} | 77 {% endfor %} |
78 </select> | 78 </select> |
79 <div id="social-media"> | 79 <div id="social-media"> |
80 <a href="https://www.facebook.com/adblockplus"> | 80 <a href="https://www.facebook.com/adblockplus"> |
81 <img src="/images/facebook.png" alt="{{get_string("facebook-icon-alt ", "footer")}}"> | 81 <img src="/images/facebook.png" alt="{{get_string("facebook-icon-alt ", "footer")}}" /> |
Thomas Greiner
2015/09/08 09:59:52
Detail: Other `<img>` tags on this page are closed
saroyanm
2015/09/08 10:04:30
Done.
| |
82 </a> | 82 </a> |
83 <a href="https://twitter.com/adblockplus"> | 83 <a href="https://twitter.com/adblockplus"> |
84 <img src="/images/twitter.png" alt="{{get_string("twitter-icon-alt", "footer")}}"> | 84 <img src="/images/twitter.png" alt="{{get_string("twitter-icon-alt", "footer")}}" /> |
85 </a> | 85 </a> |
86 <a href="https://google.com/+AdblockPlus"> | 86 <a href="https://plus.google.com/+AdblockPlus"> |
Thomas Greiner
2015/09/08 09:59:52
Detail: While this link does work, it will redirec
saroyanm
2015/09/08 10:04:30
Done.
| |
87 <img src="/images/gplus.png" alt="{{get_string("gplus-icon-alt", "fo oter")}}"> | 87 <img src="/images/gplus.png" alt="{{get_string("gplus-icon-alt", "fo oter")}}" /> |
88 </a> | 88 </a> |
89 </div> | 89 </div> |
90 </div> | 90 </div> |
91 </footer> | 91 </footer> |
92 {% if page == "index" %} | 92 {% if page == "index" %} |
93 <div id="overlay"> | 93 <div id="overlay"> |
94 <div id="modal"> | 94 <div id="modal"> |
95 <a href="#" id="modal-close"></a> | 95 <a href="#" id="modal-close"></a> |
96 <? include modal ?> | 96 <? include modal ?> |
97 </div> | 97 </div> |
98 </div> | 98 </div> |
99 {% endif %} | 99 {% endif %} |
100 <script src="/js/main.js"></script> | 100 <script src="/js/main.js"></script> |
101 </body> | 101 </body> |
102 </html> | 102 </html> |
LEFT | RIGHT |