LEFT | RIGHT |
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"> | 1 <footer id="site-footer" class="navbar"> |
20 <div class="navbar-wrapper row"> | 2 <div class="navbar-wrapper row"> |
21 <div class="column one-fourth"> | 3 <div id="site-footer-locales" class="column one-fourth"> |
22 <div class="custom-select"> | 4 <div class="custom-select"> |
23 <button class="custom-select-selected" aria-expanded="false" aria-contro
ls="language-options"> | 5 <button class="custom-select-selected" aria-expanded="false" aria-haspop
up="true"> |
24 {{config.get("langnames", locale)}} | 6 {{ config.get("langnames", locale) }} |
25 </button> | 7 </button> |
26 <ul id="language-options" class="custom-select-options" aria-hidden="tru
e"> | 8 <ul class="custom-select-options" aria-label="{{ "Select Language" | tra
nslate("language-options-label", "Label") }}" role="menu" tabindex="-1"> |
27 {% for lang in available_locales %} | 9 {% for available_locale in available_locales %} |
28 <li> | 10 <li role="none"> |
29 {{page|linkify(lang)}} | 11 {{ page | linkify(available_locale) }}{{ config.get("langnames", ava
ilable_locale) }}</a> |
30 {{config.get("langnames", lang)}} | |
31 </a> | |
32 </li> | 12 </li> |
33 {% endfor %} | 13 {% endfor %} |
34 </ul> | 14 </ul> |
35 </div> | 15 </div> |
36 </div> | 16 </div> |
37 <div class="column three-fourths"> | 17 <div id="site-footer-nav" class="column three-fourths"> |
38 <nav id="site-footer-nav"> | 18 <nav> |
39 <ul> | 19 <ul class="horizontal-list"> |
40 <li><a href="">Legal</a></li> | 20 <li><a href="">{{ "Legal" | translate("footer-nav-link-1", "Navigation
link") }}</a></li> |
41 <li><a href="https://adblockplus.org/privacy">Privacy Policy</a></li> | 21 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" | tr
anslate("footer-nav-link-2", "Navigation link") }}</a></li> |
42 </ul> | 22 </ul> |
43 </nav> | 23 </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
> | 24 <small class="muted"> |
| 25 {{ "<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") }} |
| 26 </small> |
45 </div> | 27 </div> |
46 </div> | 28 </div> |
47 </header> | 29 </footer> |
LEFT | RIGHT |