| OLD | NEW |
| 1 <footer id="site-footer" class="navbar"> | 1 <footer id="site-footer" class="navbar"> |
| 2 <div class="container large-desktop-width"> | 2 <div class="container large-desktop-width"> |
| 3 <div class="row"> | 3 <div class="row"> |
| 4 <div id="site-footer-locales" class="column one-fourth"> | 4 <div id="site-footer-locales" class="column one-fourth"> |
| 5 <div id="language-select" class="custom-select"> | 5 <div id="language-select" class="custom-select"> |
| 6 <button class="custom-select-selected" aria-expanded="false" aria-hasp
opup="true"> | 6 <button class="custom-select-selected" aria-expanded="false" aria-hasp
opup="true"> |
| 7 {{ config.get("langnames", locale) }} | 7 {{ config.get("langnames", locale) }} |
| 8 </button> | 8 </button> |
| 9 <ul class="custom-select-options" aria-label="{{ "Select Language" | t
ranslate("language-options-label", "Label") }}" role="menu" tabindex="-1"> | 9 <ul class="custom-select-options" aria-label="{{ "Select Language" | t
ranslate("language-options-label", "Label") }}" role="menu" tabindex="-1"> |
| 10 {% for available_locale in available_locales %} | 10 {% for available_locale in available_locales %} |
| 11 <li class="custom-select-option" role="none"> | 11 <li class="custom-select-option" role="none"> |
| 12 {{ page | linkify(available_locale) }}{{ config.get("langnames", a
vailable_locale) }}</a> | 12 {{ page | linkify(available_locale) }}{{ config.get("langnames", a
vailable_locale) }}</a> |
| 13 </li> | 13 </li> |
| 14 {% endfor %} | 14 {% endfor %} |
| 15 </ul> | 15 </ul> |
| 16 </div> | 16 </div> |
| 17 </div> | 17 </div> |
| 18 | 18 |
| 19 <div id="site-footer-nav" class="column three-fourths"> | 19 <div id="site-footer-nav" class="column three-fourths"> |
| 20 <nav> | 20 <nav> |
| 21 <ul class="horizontal-list"> | 21 <ul class="horizontal-list"> |
| 22 <li><a href="">{{ "Legal" | translate("footer-nav-link-1", "Navigati
on link") }}</a></li> | 22 <li><a href="legal">{{ "Legal" | translate("footer-nav-link-1", "Nav
igation link") }}</a></li> |
| 23 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" |
translate("footer-nav-link-2", "Navigation link") }}</a></li> | 23 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" |
translate("footer-nav-link-2", "Navigation link") }}</a></li> |
| 24 </ul> | 24 </ul> |
| 25 </nav> | 25 </nav> |
| 26 <span class="muted"> | 26 <span class="muted"> |
| 27 {{ "<a href=\"https://adblockplus.org\">Adblock Plus</a> is a register
ed trademark of <a href=\"https://eyeo.com\">eyeo GmbH</a>" | translate("footer-
trademark-notice", "Paragraph") }} | 27 {{ "<a href=\"https://adblockplus.org\">Adblock Plus</a> is a register
ed trademark of <a href=\"https://eyeo.com\">eyeo GmbH</a>" | translate("footer-
trademark-notice", "Paragraph") }} |
| 28 </span> | 28 </span> |
| 29 </div> | 29 </div> |
| 30 </div> {# .row #} | 30 </div> {# .row #} |
| 31 </div> {# .container #} | 31 </div> {# .container #} |
| 32 </footer> | 32 </footer> |
| OLD | NEW |