OLD | NEW |
(Empty) | |
| 1 title=Download Adblock Plus |
| 2 description=Get Adblock Plus for free on Firefox, Chrome, Opera, Safari, Android
and iOS |
| 3 template=minimal |
| 4 |
| 5 <head> |
| 6 <style> |
| 7 header img { |
| 8 width: 4em; |
| 9 height: auto; |
| 10 } |
| 11 </style> |
| 12 </head> |
| 13 |
| 14 {% set supported_devices = [ |
| 15 { |
| 16 "id": "desktop", |
| 17 "icons": { "1x": "device-desktop.png", "2x": "device-desktop-2x.png" }, |
| 18 "icon_alt": "Computer monitor and mouse icon", |
| 19 "title": "Block ads on any desktop browser", |
| 20 "description": "By clicking any of the links below, you agree to our " + "t
erms" | linkify + "Terms of Use</a>.", |
| 21 "platforms": [ |
| 22 { "name": "Chrome", "url": "https://chrome.google.com/webstore/detail/cfhd
ojbkjhnklbpkdaibdccddilifddb" }, |
| 23 { "name": "Firefox", "url": "https://update.adblockplus.org/latest/adblock
plusfirefox.xpi" }, |
| 24 { "name": "Internet Explorer", "url": "https://update.adblockplus.org/late
st/adblockplusie.exe" }, |
| 25 { "name": "Safari", "url": "https://update.adblockplus.org/latest/adblockp
lussafari.safariextz" }, |
| 26 { "name": "Edge (beta)", "url": "https://www.microsoft.com/store/p/adblock
-plus/9nblggh4r9nz" }, |
| 27 { "name": "Opera", "url": "https://addons.opera.com/extensions/details/ope
ra-adblock/" }, |
| 28 { "name": "Maxthon", "url": "http://www.maxthon.com/mx5/features/ad-blocke
r/" }, |
| 29 { "name": "Yandex Browser", "url": "https://chrome.google.com/webstore/det
ail/cfhdojbkjhnklbpkdaibdccddilifddb" } |
| 30 ] |
| 31 }, |
| 32 { |
| 33 "id": "mobile", |
| 34 "icons": { "1x": "device-mobile.png", "2x": "device-mobile.svg" }, |
| 35 "icon_alt": "Mobile icon", |
| 36 "title": "Block ads in your mobile browser", |
| 37 "platforms": [ |
| 38 { "name": "Samsung Internet (Android)", "url": "https://play.google.com/st
ore/apps/details?id=org.adblockplus.adblockplussbrowser&hl" }, |
| 39 { "name": "Safari (iOS)", "url": "https://itunes.apple.com/app/adblock-plu
s-abp-remove-ads-browse-faster-without-tracking/id1028871868?mt=8" }, |
| 40 { "name": "Firefox", "url": "https://addons.mozilla.org/android/addon/adbl
ock-plus/" } |
| 41 ] |
| 42 }, |
| 43 { |
| 44 "id": "abb", |
| 45 "icons": { "1x": "abb-icon.png", "2x": "abb-icon-2x.png" }, |
| 46 "icon_alt": "Adblock Browser logo", |
| 47 "title": "Block ads in a dedicated ad-blocking browser", |
| 48 "platforms": [ |
| 49 { "name": "Adblock Browser (Android)", "url": "https://play.google.com/sto
re/apps/details?id=org.adblockplus.browser" }, |
| 50 { "name": "Adblock Browser (iOS)", "url": "https://itunes.apple.com/my/app
/adblock-browser/id1015653330?mt=8&ign-itsct=1015653330-1015653330&ign-itscg=017
6&ign-mpt=uo%3D4" } |
| 51 ] |
| 52 } |
| 53 ] %} |
| 54 |
| 55 <header class="bg-primary section content text-center"> |
| 56 <div class="container"> |
| 57 <img height="90px" |
| 58 width="90px" |
| 59 src="/img/download-icon.png" |
| 60 srcset="/img/download-icon.svg 2x" |
| 61 alt="{{ "White down arrow" | translate("download-icon", "Alt text") }}"
> |
| 62 <h1>{{ "Get Adblock Plus products on these devices" | translate("download-he
ading", "Heading") }}</h1> |
| 63 <p>{{ "Supported platforms" | translate("download-subheading", "Subheading")
}}</p> |
| 64 </div> |
| 65 </header> |
| 66 |
| 67 <div id="supported-devices" class="item-group container text-center content"> |
| 68 <div class="row"> |
| 69 {% for device in supported_devices %} |
| 70 <div class="column one-third"> |
| 71 <img |
| 72 height="90px" |
| 73 width="90px" |
| 74 src="/img/{{ device.icons['1x'] }}" |
| 75 srcset="/img/{{ device.icons['2x'] }} 2x" |
| 76 alt="{{ device.icon_alt | translate(device.id + "-icon-alt", "Alt text")
}}"> |
| 77 <h2>{{ device.title | translate(device.id + "-title", "Heading") }}</h2> |
| 78 <div> |
| 79 {% if device.description %} |
| 80 <p><small>{{ device.description | safe | translate(device.id + "-descrip
tion", "Paragraph") }}</small></p> |
| 81 {% endif %} |
| 82 <ul class="horizontal-list"> |
| 83 {% for platform in device.platforms %} |
| 84 <li> |
| 85 {% set platform_identifier = device.id + "-product-name-" + loop.i
ndex | string %} |
| 86 <a href="{{ platform.url }}">{{ platform.name | translate(platform
_identifier, "Product name") }}</a>{{ ", " if loop.index != loop.length }} |
| 87 </li> |
| 88 {% endfor %} |
| 89 </ul> |
| 90 </div> |
| 91 </div> |
| 92 {% endfor %} |
| 93 </div> |
| 94 </div> |
OLD | NEW |