Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: includes/layout/footer.tmpl

Issue 29564555: Issue 5824 - Refactor CustomSelect on help.eyeo.com (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Update comment style Created Oct. 10, 2017, 11:54 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | static/js/main.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <footer id="site-footer" class="navbar"> 1 <footer id="site-footer" class="navbar">
2 <div class="navbar-wrapper row"> 2 <div class="navbar-wrapper row">
3 <div id="site-footer-locales" class="column one-fourth"> 3 <div id="site-footer-locales" class="column one-fourth">
4 <div class="custom-select"> 4 <div id="language-select" class="custom-select">
5 <button class="custom-select-selected" aria-expanded="false" aria-haspop up="true"> 5 <button class="custom-select-selected" aria-expanded="false" aria-haspop up="true">
6 {{ config.get("langnames", locale) }} 6 {{ config.get("langnames", locale) }}
7 </button> 7 </button>
8 <ul class="custom-select-options" aria-label="{{ "Select Language" | tra nslate("language-options-label", "Label") }}" role="menu" tabindex="-1"> 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 %} 9 {% for available_locale in available_locales %}
10 <li role="none"> 10 <li role="none">
11 {{ page | linkify(available_locale) }}{{ config.get("langnames", ava ilable_locale) }}</a> 11 {{ page | linkify(available_locale) }}{{ config.get("langnames", ava ilable_locale) }}</a>
12 </li> 12 </li>
13 {% endfor %} 13 {% endfor %}
14 </ul> 14 </ul>
15 </div> 15 </div>
16 </div> 16 </div>
17 <div id="site-footer-nav" class="column three-fourths"> 17 <div id="site-footer-nav" class="column three-fourths">
18 <nav> 18 <nav>
19 <ul class="horizontal-list"> 19 <ul class="horizontal-list">
20 <li><a href="">{{ "Legal" | translate("footer-nav-link-1", "Navigation link") }}</a></li> 20 <li><a href="">{{ "Legal" | translate("footer-nav-link-1", "Navigation link") }}</a></li>
21 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" | tr anslate("footer-nav-link-2", "Navigation link") }}</a></li> 21 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" | tr anslate("footer-nav-link-2", "Navigation link") }}</a></li>
22 </ul> 22 </ul>
23 </nav> 23 </nav>
24 <span class="muted"> 24 <span 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") }} 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 </span> 26 </span>
27 </div> 27 </div>
28 </div> 28 </div>
29 </footer> 29 </footer>
OLDNEW
« no previous file with comments | « no previous file | static/js/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld