-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
103 lines (102 loc) · 3.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="A collection of open source Android apps, developed with privacy in mind and beautiful design."
/>
<title>You Apps</title>
<link rel="stylesheet" href="style.css" />
<link
rel="icon"
href="https://raw.githubusercontent.com/you-apps/Artwork/main/app-icons/new/YouApps.svg"
/>
<script src="app.js" defer></script>
</head>
<body>
<header>
<a href="/"
><img
src="https://raw.githubusercontent.com/you-apps/Artwork/main/app-icons/new/YouApps.svg"
alt="You Apps icon"
/></a>
<nav>
<a href="#hero">About</a>
<a href="#apps">Apps</a>
<a href="#team">Team</a>
<a href="#contributing">Contributing</a>
</nav>
</header>
<section id="hero">
<div id="desc">
<h1>No Ads, no trackers, just You</h1>
<p>
A collection of open source Android apps, developed with privacy in
mind and beautiful design. No need to choose between privacy and a
modern UI when you can have both at the same time. Get them now via
GitHub or F-Droid.
</p>
<span id="hero-links">
<a class="material-button" href="https://github.com/you-apps"
>Source code</a
>
<a class="material-button" href="https://liberapay.com/bnyro"
>Donate</a
>
</span>
</div>
<img
src="https://raw.githubusercontent.com/you-apps/Artwork/main/app-icons/new/YouApps.svg"
alt="You Apps icon"
/>
</section>
<section id="apps">
<h2>Apps</h2>
<div id="app-list"></div>
<noscript>Enable JavaScript to view the apps</noscript>
</section>
<section id="team">
<h2>Team</h2>
<div id="member-list"></div>
</section>
<section id="contributing">
<div class="card">
<h1>Contribute now!</h1>
<p>All contributions are very welcome!</p>
<ul>
<li>
Feel free to join the
<a href="https://matrix.to/#/#you-apps:matrix.org">Matrix Room</a>
for discussions about the app.
</li>
<li>
Bug reports and feature requests can be submitted to
<a href="https://github.com/you-apps">our repository</a>
(please make sure to fill out all the requested information
properly!).
</li>
<li>
If you are a developer and wish to contribute to the app, please
<strong>fork</strong> the project and submit a
<a href="https://help.github.com/articles/about-pull-requests/"
>pull request</a
>.
</li>
</ul>
</div>
</section>
<footer>
<span>2023 You Apps GPL-3.0 LICENSED</span>
<span id="social-links">
<a href="https://github.com/you-apps"
><img src="assets/github.svg" alt="GitHub icon"
/></a>
<a href="https://matrix.to/#/#you-apps:matrix.org"
><img src="assets/matrix.svg" alt="Matrix icon"
/></a>
</span>
</footer>
</body>
</html>