-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
129 lines (129 loc) · 5.42 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Delta Icons</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/style.css">
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#444444">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#444444">
</head>
<body>
<div class="header">
<section class="intro hor-center ver-center">
<div class="wrapper">
<div class="text-center">
<h1>Delta</h1>
</div>
</div>
<img src="assets/img/phone_cut.svg" class="bottom hor-center">
</section>
</div>
<div class="content">
<section>
<div class="wrapper">
<h3>Now on a platform near you</h3>
<p>
Delta is an open source icon pack made by <a href="https://github.com/Delta-Icons/android/graphs/contributors">awesome people</a>. Starting off as a 8-icon-concept it has since become a top-ranking app in Google Play and was featured in the #myandroid-campaign as well as quite a few other places on the internet. With over a million downloads and <b><a id="icons_count"></a></b> icons. More platforms like Linux and iOS were also added with the help of the community.
</p>
</div>
</section>
<section>
<div class="wrapper hori">
<div class="w50">
<a href="https://play.google.com/store/apps/details?id=website.leifs.delta">
<button>
<img src="assets/img/google_play.svg" alt="Google Play">
<p>Play Store</p>
</button>
</a>
</div>
<div class="w50">
<a href="https://f-droid.org/packages/website.leifs.delta.foss">
<button>
<img src="assets/img/f_droid.svg" alt="F-Droid">
<p>F-Droid</p>
</button>
</a>
</div>
<div class="w50">
<a href="cydia://url/https://cydia.saurik.com/api/share#?source=http://delta-icons.github.io/ios/">
<button>
<img src="assets/img/cydia.svg" alt="Cydia">
<p>Cydia</p>
</button>
</a>
</div>
<div class="w50">
<a href="https://github.com/Delta-Icons">
<button>
<img src="assets/img/github.svg" alt="GitHub">
<p>GitHub</p>
</button>
</a>
</div>
<div class="w100">
<button onclick="copyToBuffer(this, 'linux')">
<img src="assets/img/linux.svg" alt="Linux">
<p copy="bash -c 'bash <(curl -sL delta-icons.github.io/linux)'" id="linux">Linux</p>
</button>
</div>
</div>
</section>
<section>
<div class="wrapper">
<h3>
Donations
</h3>
<p>
This icon pack is maintained by volunteers in their free time. If you want to leave a tip it is highly appreciated.<br>
<br>
Thank you ❤️
</p>
</div>
</section>
<section>
<div class="wrapper">
<a href="https://paypal.me/leifniem">
<button>
<img src="assets/img/paypal.svg" alt="">
<p>Donate and make some maintainer happy</p>
</button>
</a>
</div>
</section>
<section class="last">
<footer>
<div class="wrapper text-center">
<p>
<a href="privacy_policy.html">Privacy Policy</a> • <a href="https://creativecommons.org/licenses/by-nc-nd/4.0/" rel="nofollow">License</a>
</p>
</div>
</footer>
</section>
<section id="icons">
<div class="wrapper">
<h2 class="text-center">An icon for every app</h2>
<h2><input id="text" type="text" placeholder="Search"/></h2>
<div id="icons-list"></div>
</div>
</section>
</div>
<script src="assets/icons.js" defer></script>
</body>
</html>