Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <footer id="site-footer" class="navbar"> | |
2 <div class="navbar-wrapper row"> | |
3 <div id="site-footer-locales" class="column one-fourth"> | |
4 <div class="custom-select"> | |
5 <button class="custom-select-selected" aria-expanded="false" aria-haspop up="true"> | |
6 {{ config.get("langnames", locale) }} | |
7 </button> | |
8 <ul class="custom-select-options" aria-label="{{ "Select Language" | tra nslate("language-options-label", "Label") }}" role="menu" tabindex="-1"> | |
9 {% for available_locale in available_locales %} | |
10 <li role="none"> | |
11 {{ page | linkify(available_locale) }} | |
juliandoucette
2017/09/12 11:41:12
NIT: This line break and indentation causes there
ire
2017/09/12 15:04:02
Done.
| |
12 {{ config.get("langnames", available_locale) }} | |
13 </a> | |
14 </li> | |
15 {% endfor %} | |
16 </ul> | |
17 </div> | |
18 </div> | |
19 <div id="site-footer-nav" class="column three-fourths"> | |
20 <nav> | |
21 <ul class="horizontal-list"> | |
22 <li><a href="">{{ "Legal" | translate("footer-nav-link-1", "Navigation link") }}</a></li> | |
23 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" | tr anslate("footer-nav-link-2", "Navigation link") }}</a></li> | |
24 </ul> | |
25 </nav> | |
26 <small class="muted"> | |
27 {{ "<a href=\"https://adblockplus.org\">Adblock Plus</a> is a registered trademark of <a href=\"https://eyeo.com\">eyeo GmbH</a>" | translate("footer-tr ademark-notice", "Paragraph") }} | |
28 </small> | |
29 </div> | |
30 </div> | |
31 </footer> | |
OLD | NEW |