 Issue 29592569:
  Issue 5943 - Implement Updates Page for Adblock Plus extension  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockplusui/
    
  
    Issue 29592569:
  Issue 5943 - Implement Updates Page for Adblock Plus extension  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockplusui/| Index: updates.html | 
| =================================================================== | 
| new file mode 100644 | 
| --- /dev/null | 
| +++ b/updates.html | 
| @@ -0,0 +1,93 @@ | 
| +<!-- | 
| + - This file is part of Adblock Plus <https://adblockplus.org/>, | 
| + - Copyright (C) 2006-present eyeo GmbH | 
| + - | 
| + - Adblock Plus is free software: you can redistribute it and/or modify | 
| + - it under the terms of the GNU General Public License version 3 as | 
| + - published by the Free Software Foundation. | 
| + - | 
| + - Adblock Plus is distributed in the hope that it will be useful, | 
| + - but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| + - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
| + - GNU General Public License for more details. | 
| + - | 
| + - You should have received a copy of the GNU General Public License | 
| + - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 
| +--> | 
| 
Thomas Greiner
2017/11/14 12:25:43
Please leave the license header unchanged. Otherwi
 
martin
2017/11/20 11:47:34
Done.
 | 
| +<!DOCTYPE html> | 
| +<html> | 
| +<head> | 
| + <title class="i18n_updates_title"></title> | 
| + <meta charset="utf-8" /> | 
| + <meta name="viewport" content="width=device-width, initial-scale=1" /> | 
| + <link href="skin/updates.css" rel="stylesheet"/> | 
| + <script src="polyfill.js"></script> | 
| + <script src="ext/common.js"></script> | 
| + <script src="ext/content.js"></script> | 
| + <script src="common.js"></script> | 
| + <script src="i18n.js"></script> | 
| +</head> | 
| + | 
| +<body> | 
| + | 
| + <main> | 
| + <div id="container"> | 
| + | 
| + <header class="column graphic-column"> | 
| + <div class="update-graphic-container"> | 
| + <div class="update-graphic-content"> | 
| + <img src="/skin/updates/abp-logo.svg"/> | 
| + <div class="version-details"> | 
| + <h2 class="i18n_updates_status"></h2> | 
| + </div> | 
| + | 
| + </div> | 
| + </header> | 
| + | 
| + <section class="column content-column"> | 
| + | 
| + <div id="content"> | 
| + | 
| + <header> | 
| + <h1 class="i18n_updates_heading"></h1> | 
| + <p class="i18n_updates_subheading"></p> | 
| + </header> | 
| + | 
| + <article class="feature-entry"> | 
| + <img class="feature-icon" src="/skin/updates/icon-rocket.svg" alt="rocket-icon"/> | 
| + <p class="i18n_updates_optionsPageNews"><a href="#" class="i18n_updates_optionsPageLink"></a></p> | 
| 
Thomas Greiner
2017/11/14 12:25:43
There are still a couple of links missing on this
 
martin
2017/11/20 11:47:34
Hmm... I took a look and couldn't figure that one
 
Thomas Greiner
2017/11/20 17:06:05
It should be fine for you to include it here. We s
 
martin
2017/11/26 17:08:37
Done.
 | 
| + </article> | 
| + | 
| + <article class="feature-entry"> | 
| + <img class="feature-icon" src="/skin/updates/icon-thumbs-up.svg" alt="thumbs-up-icon"/> | 
| + <p id="block-ads-text" class="i18n_updates_blockAds"></p> | 
| + </article> | 
| + | 
| + <article class="custom-feature-entry"> | 
| + <h2 class="i18n_updates_phone"></h2> | 
| + <div class="feature-entry"> | 
| + <img class="feature-icon" src="/skin/updates/icon-mobile.svg" alt="thumbs-up-icon"/> | 
| + <p class="i18n_updates_adblockBrowser"></p> | 
| + </div> | 
| + <div class="store-buttons"> | 
| 
Thomas Greiner
2017/11/14 12:25:44
Have we made a decision regarding the store button
 
martin
2017/11/20 11:47:35
Done.
 | 
| + <a href="" class="store-button applestore-button"> | 
| + <img src="skin/updates/appstore-bg.svg" alt="apple store button"> | 
| + </a> | 
| + <a href="" class="store-button googleplay-button"> | 
| + <img src="skin/updates/googleplay-bg.svg" alt="google play store button"> | 
| + </a> | 
| + </div> | 
| + </article> | 
| + | 
| + </div> | 
| + | 
| + </section> | 
| + | 
| + </div> | 
| + | 
| + </main> | 
| + | 
| + </body> | 
| + | 
| + </html> | 
| + |