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

Unified Diff: includes/press/releases.tmpl

Issue 29332433: Issue 3366 - Add tab for press releases to eyeo.com/press (Closed)
Patch Set: Addressed Thomas Comments Created Dec. 11, 2015, 7:13 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pages/press.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: includes/press/releases.tmpl
===================================================================
new file mode 100644
--- /dev/null
+++ b/includes/press/releases.tmpl
@@ -0,0 +1,50 @@
+{% set releases_en = [
+ ("October 30, 2015", "First Free Ad Blocker on the Apple App Store Arrives; The Adblock Autumn: Adblock Plus for iOS 2-nd from ABP this Month", "2015-09-30-ABP_for_iOSApp-WEB.pdf"),
Thomas Greiner 2015/12/14 12:56:58 Actually, I meant that the editor (in this case Be
saroyanm 2015/12/14 16:30:06 I've created a ticket to tackle that issue later b
+ ("October 29, 2015", "Adblock Plus To Invite An Independent Board to Manage 'Acceptable Ads' Program", "2015-09-29-AA_independent_board-WEB.pdf"),
+ ("October 15, 2015", "Sweet 4­‐Peat for Users: Adblock Plus Victorious In Court Against Axel Springer", "2015-09-15-Cologne-lawsuitWIN-WEB.pdf"),
+ ("September 08, 2015", "Adblock Plus beats Apple to the punch; Ships Adblock Browser ahead of iOS 9", "2015-09-08-AdblockBrowserforiOSLaunch(POST)-WEB.pdf"),
+ ("September 08, 2015", "Adblock Plus Escapes Exile; Returns to Google Play Store", "2015-09-08-Adblock BrowserforAndroid(POST)-WEB.pdf"),
+ ("July 08, 2015", "University Tests Adblock Plus on Enterprise Network; Finds 40% Traffic Reduction", "2015-07-08-ABP-SFUStudyWEB.pdf"),
+ ("May 19, 2015", "Adblock Plus Builds First Mobile Browser From the Ground Up; Leaves Ad Industry With Nowhere to Hide", "2015-05-19-AdblockBrowserAndroidBeta-WEB.pdf"),
+ ("January 27, 2015", "Adblock Plus for Internet Explorer Officially Out of Beta", "2015-01-27-Maxthon-US-WEB.pdf"),
+ ("April 04, 2014", "Research Study Finds ‘Loud’ Website Ads Do Not Work", "2014-04-29-Eyetracking-WEB.pdf"),
+ ("October 10, 2013", "Adblock Plus Available for Safari; Mac Owners Rejoice", "2013-10-10-29-ABP-on-Safari-WEB.pdf"),
+] %}
+
+{% set releases_de = [
+ ("September 30, 2015", "Unabhängiges Gremium entscheidet bald über 'Acceptable Ads' bei Adblock Plus", "2015-09-30-AAIndependentBoard_DE.pdf"),
+ ("September 29, 2015", "4:0 für das Selbstbestimmungsrecht des Nutzers! Adblock Plus gewinnt Klage gegen Axel Springer vor Kölner Landgericht", "2015-09-29-CologneLawsuit-DE.pdf"),
+ ("September 10, 2015", "Adblock Browser aus dem Exil entlassen - endlich zurück im Google Play Store!", "2015-09-10-Adblock_Browser_für_Android-DE.pdf"),
+ ("September 08, 2015", "Adblock Plus schneller dran als Apple - Adblock Browser kommt noch vor iOS 9!", "2015-09-08-Adblock_Browser_für_iOS_Launch-DE.pdf"),
+ ("September 08, 2015", "Adblock Browser aus dem Exil entlassen - endlich zurück im Google Play Store!", "2015-09-08-Adblock_Browser_für_Android-DE.pdf"),
+ ("July 03, 2015", "Universität testet Adblock Plus auf Unternehmensnetzwerk und reduziert den Datenverbrauch damit um 40%", "2015-07-03-SFU_Press_Release-DE.pdf"),
+ ("May 19, 2015", "Werbeblocker 'Adblock Plus' launcht eigenen Android-Browser", "2015-05-19-AdblockBrowserpressrelease-DE.pdf"),
+ ("February 02, 2015", "Maxthon und AdblockPlus schließen strategische Partnerschaft zum Launch des ersten Browsers, der Werbung standardmäßig blockiert", "2015-02-09-MaxthonPressRelease-DE.pdf"),
+ ("April 04, 2014", "Erstaunliche neue Studie zur Werbewirkung: Dezente Anzeigen funktionieren besser", "2014-04-29-Eyetrackingtranslatedplusblog.pdf"),
+ ("June 06, 2013", "Neue Studie zu Werbung im Netz: Kinder von Online­Anzeigen oftmals überfordert", "2013-06-20_KinderOnline-Werbung-DE.pdf"),
+] %}
+
+<p>
+ <a href="#english">English</a>
+</p>
+<p>
+ <a href="#german">German</a>
+</p>
+
+<h3 id="english">English</h3>
Thomas Greiner 2015/12/14 12:56:58 What about creating a macro for that instead of re
saroyanm 2015/12/14 16:30:06 I think in that case also create dynamically the r
+<ul>
+ {% for date, title, file in releases_en %}
+ <li>
+ <div>{{date}}</div><a href="/press/releases/en/{{file}}">{{title}}</a>
Thomas Greiner 2015/12/14 12:56:58 Detail: Anything against putting each tag here in
saroyanm 2015/12/14 16:30:07 Done.
+ </li>
+ {% endfor %}
+</ul>
+
+<h3 id="german">German</h3>
+<ul>
+{% for date, title, file in releases_de %}
+ <li>
+ <div>{{date}}</div><a href="/press/releases/de/{{file}}">{{title}}</a>
+ </li>
+{% endfor %}
+</ul>
« no previous file with comments | « no previous file | pages/press.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld