Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <footer id="site-footer" class="navbar"> | |
2 <div class="navbar-wrapper row"> | |
3 <div class="column one-fourth"> | |
4 <div class="custom-select"> | |
5 <button class="custom-select-selected" aria-expanded="false" aria-contro ls="language-options"> | |
juliandoucette
2017/08/22 14:33:41
NIT: I think this should be hidden by default and
ire
2017/09/04 20:28:06
This is sort of what I've done already, since I'm
juliandoucette
2017/09/06 17:48:17
Acknowledged. But we should be consistent. Doesn't
ire
2017/09/08 09:53:32
This makes sense, you're right. Will update.
| |
6 {{config.get("langnames", locale)}} | |
7 </button> | |
8 <ul id="language-options" class="custom-select-options" aria-hidden="tru e"> | |
juliandoucette
2017/08/22 14:33:41
NIT: aria-hidden should be added by js because thi
ire
2017/09/04 20:28:04
Done.
| |
9 {% for lang in available_locales %} | |
10 <li> | |
11 {{page|linkify(lang)}} | |
12 {{config.get("langnames", lang)}} | |
13 </a> | |
14 </li> | |
15 {% endfor %} | |
16 </ul> | |
17 </div> | |
18 </div> | |
19 <div class="column three-fourths"> | |
20 <nav id="site-footer-nav"> | |
21 <ul> | |
juliandoucette
2017/08/22 14:33:41
NIT: This list should stretch the footer if it's h
ire
2017/09/04 20:28:06
It doesn't seem like this list will be heavily pop
juliandoucette
2017/09/06 17:48:17
- I think that we are planning to translate the he
ire
2017/09/08 09:53:32
I think you meant to leave this comment on the lan
| |
22 <li><a href="">Legal</a></li> | |
juliandoucette
2017/08/22 14:33:41
Note: This will probably be the "legal" or "impres
ire
2017/09/04 20:28:04
Acknowledged. I will add it when the page is added
juliandoucette
2017/09/06 17:48:17
Acknowledged.
| |
23 <li><a href="https://adblockplus.org/privacy">Privacy Policy</a></li> | |
24 </ul> | |
25 </nav> | |
26 <small class="muted"><a href="https://adblockplus.org">Adblock Plus</a> is a registered trademark of <a href="https://eyeo.com">eyeo GmbH</a></small> | |
27 </div> | |
28 </div> | |
29 </header> | |
OLD | NEW |