forked from adblockplus/adblockplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst-run.html
109 lines (100 loc) · 4.3 KB
/
first-run.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<!--
- 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/>.
-->
<html>
<head>
<title data-i18n="firstRun_title"></title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link type="text/css" href="skin/fonts/font.css" rel="stylesheet"/>
<link type="text/css" href="skin/first-run.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>
<script src="first-run.js"></script>
</head>
<body>
<nav id="navbar">
<div class="navbar-container">
<a id="navbar-logo" data-doclink="adblock_plus">
<img src="skin/icons/logo/abp-full.svg" alt="Adblock Plus">
</a>
<a id="navbar-donate" class="button" data-doclink="donate_frp_page"
data-i18n="firstRun_donate"></a>
</div>
</nav>
<main>
<header id="installation-status">
<img src="skin/icons/first-run/checkmark-header.svg" alt="">
<h1 data-i18n="firstRun_title"></h1>
<p data-i18n="firstRun_subtitle"></p>
</header>
<div id="content" class="container content">
<div id="warnings" class="container two-thirds">
<section data-warning="reinitialized">
<p id="warning-reinitialized" data-i18n="firstRun_warning_reinitialized"></p>
</section>
<section data-warning="dataCorrupted">
<p data-i18n="firstRun_warning_dataCorrupted_intro"></p>
<ol>
<li data-i18n="firstRun_warning_dataCorrupted_step1"></li>
<li data-i18n="firstRun_warning_dataCorrupted_step2"></li>
<li id="dataCorrupted-reinstall" data-i18n="firstRun_warning_dataCorrupted_step3"></li>
</ol>
<small id="dataCorrupted-support" data-i18n="firstRun_warning_dataCorrupted_note"></small>
</section>
</div>
<section class="column one-third">
<header class="section-header">
<img src="skin/icons/first-run/checkmark.svg" alt="">
<h2 data-i18n="firstRun_control_title"></h2>
</header>
<p id="control-description" class="column-description" data-i18n="firstRun_control_description"></p>
</section>
<section id="abb-promotion" class="column one-third">
<header class="section-header">
<img src="skin/icons/first-run/rocket.svg" alt="">
<h2 data-i18n="firstRun_browser_title"></h2>
</header>
<p class="column-description" data-i18n="firstRun_browser_description"></p>
<div class="store-buttons">
<a class="store-button applestore-button" data-doclink="adblock_browser_ios_store">
<img src="skin/backgrounds/appstore.svg" data-i18n-alt="firstRun_browser_store_ios">
</a>
<a class="store-button googleplay-button" data-doclink="adblock_browser_android_store">
<img src="skin/backgrounds/googleplay.svg" data-i18n-alt="firstRun_browser_store_android">
</a>
</div>
</section>
<section class="column one-third">
<header class="section-header">
<img src="skin/icons/first-run/lock.svg" alt="">
<h2 data-i18n="firstRun_fair_title"></h2>
</header>
<p id="fair-description" class="column-description" data-i18n="firstRun_fair_description"></p>
</section>
</div>
</main>
<footer id="footer" class="content">
<div class="container">
<p id="copyright-notice"></p>
</div>
</footer>
</body>
</html>