Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 <header id="site-header" class="navbar"> | 1 <header id="site-header" class="navbar"> |
2 <div class="navbar-wrapper"> | 2 <div class="navbar-wrapper"> |
juliandoucette
2017/08/23 14:39:02
See comment [here](https://codereview.adblockplus.
ire
2017/08/25 08:27:05
Acknowledged.
| |
3 <h1 class="site-title"> | 3 <h1 id="site-title"> |
4 {{ "index" | linkify() }} | 4 {{ "index" | linkify() }} |
juliandoucette
2017/08/23 14:39:03
See comment [here](https://codereview.adblockplus.
ire
2017/08/25 08:27:06
Acknowledged.
| |
5 <img src="/img/png/eyeo-help.png" srcset="/img/svg/eyeo-help.svg 2x" alt ="{{ "eyeo Help" | translate("site-title", "Image alt text") }}"> | 5 <img src="/img/png/eyeo-help.png" srcset="/img/svg/eyeo-help.svg 2x" alt ="{{ "eyeo Help" | translate("site-title", "Image alt text") }}"> |
6 </a> | 6 </a> |
7 </h1> | 7 </h1> |
8 <button id="toggle-search-form" class="unstyled tablet-and-mobile-only"> | 8 |
9 <button class="toggle-navbar-collapse unstyled phablet-and-mobile-only"> | |
9 <img src="/img/png/search-icon.png" srcset="/img/svg/search-icon.svg 2x" a lt="{{ "Toggle Search Bar" | translate("search-toggle-alt", "Image alt text") }} "> | 10 <img src="/img/png/search-icon.png" srcset="/img/svg/search-icon.svg 2x" a lt="{{ "Toggle Search Bar" | translate("search-toggle-alt", "Image alt text") }} "> |
10 </button> | 11 </button> |
11 <div id="site-search"> | 12 |
juliandoucette
2017/08/23 14:39:02
I think that it's kindof confusing that this eleme
ire
2017/08/25 08:27:06
Done.
| |
12 <? include search-form ?> | 13 <div class="navbar-collapse"> |
juliandoucette
2017/08/23 14:39:03
It seems inconsistent that this form is an include
ire
2017/08/25 08:27:05
Done.
| |
14 <form id="search-form" action="https://duckduckgo.com" method="GET"> | |
15 <label for="search" class="sr-only">{{ "Search Adblock Plus Help" | tran slate("search-form-label", "Input label") }}</label> | |
16 <input id="search" name="q" type="search" placeholder="{{ "Search Adbloc k Plus Help" | translate("search-form-label", "Input label") }}"> | |
17 <input type="hidden" name="sites" value="adblockplus.org"> | |
18 <button type="submit"> | |
19 <img src="/img/png/search-icon.png" srcset="/img/svg/search-icon.svg 2 x" alt="{{ "Search" | translate("search-icon-alt", "Image alt text") }}"> | |
20 </button> | |
21 </form> | |
22 | |
13 <nav id="product-website-link"> | 23 <nav id="product-website-link"> |
14 <a href="https://adblockplus.org/"> | 24 <a href="https://adblockplus.org/"> |
15 {{ "Adblock Plus" | translate("abp-product-link", "Link") }} | 25 {{ "Adblock Plus" | translate("abp-product-link", "Link label") }}<img src="/img/png/external-icon.png" srcset="/img/svg/external-icon.svg 2x" alt="{{ "External link icon" | translate("external-link-icon", "Image alt text") }}"> |
juliandoucette
2017/08/23 14:39:03
NIT/Suggest: "Link text" or "Link label" (it's not
ire
2017/08/25 08:27:05
Done.
| |
16 <img src="/img/png/external-icon.png" srcset="/img/svg/external-icon.s vg 2x" alt="{{ "External link icon" | translate("external-link-icon", "Image alt text") }}"> | |
17 </a> | 26 </a> |
18 </nav> | 27 </nav> |
19 </div> | 28 </div> |
20 </div> | 29 </div> |
21 </header> | 30 </header> |
LEFT | RIGHT |