Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <!-- | |
2 - This file is part of Adblock Plus <https://adblockplus.org/>, | |
3 - Copyright (C) 2006-present eyeo GmbH | |
4 - | |
5 - Adblock Plus is free software: you can redistribute it and/or modify | |
6 - it under the terms of the GNU General Public License version 3 as | |
7 - published by the Free Software Foundation. | |
8 - | |
9 - Adblock Plus is distributed in the hope that it will be useful, | |
10 - but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 - GNU General Public License for more details. | |
13 - | |
14 - You should have received a copy of the GNU General Public License | |
15 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
16 --> | |
Thomas Greiner
2017/11/14 12:25:43
Please leave the license header unchanged. Otherwi
martin
2017/11/20 11:47:34
Done.
| |
17 <!DOCTYPE html> | |
18 <html> | |
19 <head> | |
20 <title class="i18n_updates_title"></title> | |
21 <meta charset="utf-8" /> | |
22 <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
23 <link href="skin/updates.css" rel="stylesheet"/> | |
24 <script src="polyfill.js"></script> | |
25 <script src="ext/common.js"></script> | |
26 <script src="ext/content.js"></script> | |
27 <script src="common.js"></script> | |
28 <script src="i18n.js"></script> | |
29 </head> | |
30 | |
31 <body> | |
32 | |
33 <main> | |
34 <div id="container"> | |
35 | |
36 <header class="column graphic-column"> | |
37 <div class="update-graphic-container"> | |
38 <div class="update-graphic-content"> | |
39 <img src="/skin/updates/abp-logo.svg"/> | |
40 <div class="version-details"> | |
41 <h2 class="i18n_updates_status"></h2> | |
42 </div> | |
43 | |
44 </div> | |
45 </header> | |
46 | |
47 <section class="column content-column"> | |
48 | |
49 <div id="content"> | |
50 | |
51 <header> | |
52 <h1 class="i18n_updates_heading"></h1> | |
53 <p class="i18n_updates_subheading"></p> | |
54 </header> | |
55 | |
56 <article class="feature-entry"> | |
57 <img class="feature-icon" src="/skin/updates/icon-rocket.svg" alt= "rocket-icon"/> | |
58 <p class="i18n_updates_optionsPageNews"><a href="#" class="i18n_up dates_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.
| |
59 </article> | |
60 | |
61 <article class="feature-entry"> | |
62 <img class="feature-icon" src="/skin/updates/icon-thumbs-up.svg" a lt="thumbs-up-icon"/> | |
63 <p id="block-ads-text" class="i18n_updates_blockAds"></p> | |
64 </article> | |
65 | |
66 <article class="custom-feature-entry"> | |
67 <h2 class="i18n_updates_phone"></h2> | |
68 <div class="feature-entry"> | |
69 <img class="feature-icon" src="/skin/updates/icon-mobile.svg" al t="thumbs-up-icon"/> | |
70 <p class="i18n_updates_adblockBrowser"></p> | |
71 </div> | |
72 <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.
| |
73 <a href="" class="store-button applestore-button"> | |
74 <img src="skin/updates/appstore-bg.svg" alt="apple store butto n"> | |
75 </a> | |
76 <a href="" class="store-button googleplay-button"> | |
77 <img src="skin/updates/googleplay-bg.svg" alt="google play sto re button"> | |
78 </a> | |
79 </div> | |
80 </article> | |
81 | |
82 </div> | |
83 | |
84 </section> | |
85 | |
86 </div> | |
87 | |
88 </main> | |
89 | |
90 </body> | |
91 | |
92 </html> | |
93 | |
OLD | NEW |