OLD | NEW |
(Empty) | |
| 1 {# |
| 2 # This file is part of help.eyeo.com. |
| 3 # Copyright (C) 2016 Eyeo GmbH |
| 4 # |
| 5 # help.eyeo.com is free software: you can redistribute it and/or modify |
| 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 |
| 8 # (at your option) any later version. |
| 9 # |
| 10 # help.eyeo.com is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. |
| 14 # |
| 15 # You should have received a copy of the GNU General Public License |
| 16 # along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. |
| 17 #} |
| 18 |
| 19 <footer id="site-footer" class="navbar"> |
| 20 <div class="navbar-wrapper row"> |
| 21 <div class="column one-fourth"> |
| 22 <div class="custom-select"> |
| 23 <button class="custom-select-selected" aria-expanded="false" aria-contro
ls="language-options"> |
| 24 {{config.get("langnames", locale)}} |
| 25 </button> |
| 26 <ul id="language-options" class="custom-select-options" aria-hidden="tru
e"> |
| 27 {% for lang in available_locales %} |
| 28 <li> |
| 29 {{page|linkify(lang)}} |
| 30 {{config.get("langnames", lang)}} |
| 31 </a> |
| 32 </li> |
| 33 {% endfor %} |
| 34 </ul> |
| 35 </div> |
| 36 </div> |
| 37 <div class="column three-fourths"> |
| 38 <nav id="site-footer-nav"> |
| 39 <ul> |
| 40 <li><a href="">Legal</a></li> |
| 41 <li><a href="https://adblockplus.org/privacy">Privacy Policy</a></li> |
| 42 </ul> |
| 43 </nav> |
| 44 <small class="color-muted"><a href="https://adblockplus.org">Adblock Plus<
/a> is a registered trademark of <a href="https://eyeo.com">eyeo GmbH</a></small
> |
| 45 </div> |
| 46 </div> |
| 47 </header> |
OLD | NEW |