LEFT | RIGHT |
1 {% set releases = [ | 1 {% set releases = [ |
2 ["2015-09-30", "en", "First Free Ad Blocker on the Apple App Store Arrives; Th
e Adblock Autumn: Adblock Plus for iOS 2-nd from ABP this Month", "2015-09-30-A
BP_for_iOSApp-WEB.pdf"], | 2 ["2015-09-30", "en", "First Free Ad Blocker on the Apple App Store Arrives; Th
e Adblock Autumn: Adblock Plus for iOS 2-nd from ABP this Month", "2015-09-30-A
BP_for_iOSApp-WEB.pdf"], |
3 ["2015-09-29", "en", "Adblock Plus To Invite An Independent Board to Manage 'A
cceptable Ads' Program", "2015-09-29-AA_independent_board-WEB.pdf"], | 3 ["2015-09-29", "en", "Adblock Plus To Invite An Independent Board to Manage 'A
cceptable Ads' Program", "2015-09-29-AA_independent_board-WEB.pdf"], |
4 ["2015-09-15", "en", "Sweet 4‐Peat for Users: Adblock Plus Victorious In Cour
t Against Axel Springer", "2015-09-15-Cologne-lawsuitWIN-WEB.pdf"], | 4 ["2015-09-15", "en", "Sweet 4‐Peat for Users: Adblock Plus Victorious In Cour
t Against Axel Springer", "2015-09-15-Cologne-lawsuitWIN-WEB.pdf"], |
5 ["2015-09-08", "en", "Adblock Plus beats Apple to the punch; Ships Adblock Bro
wser ahead of iOS 9", "2015-09-08-AdblockBrowserforiOSLaunch(POST)-WEB.pdf"], | 5 ["2015-09-08", "en", "Adblock Plus beats Apple to the punch; Ships Adblock Bro
wser ahead of iOS 9", "2015-09-08-AdblockBrowserforiOSLaunch(POST)-WEB.pdf"], |
6 ["2015-09-08", "en", "Adblock Plus Escapes Exile; Returns to Google Play Store
", "2015-09-08-Adblock BrowserforAndroid(POST)-WEB.pdf"], | 6 ["2015-09-08", "en", "Adblock Plus Escapes Exile; Returns to Google Play Store
", "2015-09-08-Adblock BrowserforAndroid(POST)-WEB.pdf"], |
7 ["2015-07-08", "en", "University Tests Adblock Plus on Enterprise Network; Fin
ds 40% Traffic Reduction", "2015-07-08-ABP-SFUStudyWEB.pdf"], | 7 ["2015-07-08", "en", "University Tests Adblock Plus on Enterprise Network; Fin
ds 40% Traffic Reduction", "2015-07-08-ABP-SFUStudyWEB.pdf"], |
8 ["2015-05-19", "en", "Adblock Plus Builds First Mobile Browser From the Ground
Up; Leaves Ad Industry With Nowhere to Hide", "2015-05-19-AdblockBrowserAndroid
Beta-WEB.pdf"], | 8 ["2015-05-19", "en", "Adblock Plus Builds First Mobile Browser From the Ground
Up; Leaves Ad Industry With Nowhere to Hide", "2015-05-19-AdblockBrowserAndroid
Beta-WEB.pdf"], |
9 ["2015-01-27", "en", "Adblock Plus for Internet Explorer Officially Out of Bet
a", "2015-01-27-Maxthon-US-WEB.pdf"], | 9 ["2015-01-27", "en", "Adblock Plus for Internet Explorer Officially Out of Bet
a", "2015-01-27-Maxthon-US-WEB.pdf"], |
10 ["2014-04-04", "en", "Research Study Finds 'Loud' Website Ads Do Not Work", "2
014-04-29-Eyetracking-WEB.pdf"], | 10 ["2014-04-04", "en", "Research Study Finds 'Loud' Website Ads Do Not Work", "2
014-04-29-Eyetracking-WEB.pdf"], |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 {% for code, language in languages %} | 29 {% for code, language in languages %} |
30 <p> | 30 <p> |
31 <a href="#releases-{{code}}">{{language}}</a> | 31 <a href="#releases-{{code}}">{{language}}</a> |
32 </p> | 32 </p> |
33 {% endfor %} | 33 {% endfor %} |
34 | 34 |
35 {% for code, language in languages %} | 35 {% for code, language in languages %} |
36 <h3 id="releases-{{code}}">{{language}}</h3> | 36 <h3 id="releases-{{code}}">{{language}}</h3> |
37 <ul> | 37 <ul> |
38 {% for date, lang, title, file in releases|datesort|humanize_dates %} | 38 {% for date, lang, title, file in releases|datesort %} |
39 {% if lang == code %} | 39 {% if lang == code %} |
40 <li> | 40 <li> |
41 <div>{{date}}</div> | 41 <div>{{date|humanize_date}}</div> |
42 <a href="/press/releases/{{code}}/{{file}}">{{title}}</a> | 42 <a href="/press/releases/{{code}}/{{file}}">{{title}}</a> |
43 </li> | 43 </li> |
44 {% endif %} | 44 {% endif %} |
45 {% endfor %} | 45 {% endfor %} |
46 </ul> | 46 </ul> |
47 {% endfor %} | 47 {% endfor %} |
LEFT | RIGHT |