-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (150 loc) · 7.92 KB
/
index.html
File metadata and controls
165 lines (150 loc) · 7.92 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!--
Underground Software Incorporated main website
Copyright (C) 2024 Underground Software Incorporated
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WLZTPGGTCQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WLZTPGGTCQ');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Underground Software - Home</title>
<!-- Bootstrap 5 CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS for Night Mode and Styling -->
<link rel="stylesheet" href="styles.css">
<!-- Favicon files generated using https://favicon.io/favicon-converter/ -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="/index.html">
<img class="navbar-brand" alt="Underground Software" src="/logo_short.png" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/kdlp.html">KDLP</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/success.html">Success Stories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/donate.html">Donate</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero d-flex align-items-center justify-content-center text-center text-light">
<div class="container" class="logo_full">
<img class="display-3" alt="Underground Software" src="/logo_full.png" />
<p class="lead mb-4">Empowering the next generation of computer systems engineers, with a focus on operating
systems development.</p>
<a class="btn btn-primary btn-lg" href="#apply">More</a>
<a class="btn btn-primary btn-lg" href="https://www.pledge.to/kernel-development-learning-pipeline-free-and-open-source-advanced-computer-science-materials">Donate</a>
</div>
</header>
<!-- About Section -->
<section id="about" class="py-5 bg-dark text-light">
<div class="container text-center">
<h2 class="display-4 mb-4">Mission</h2>
<p class="lead mb-4">We create open source educational materials and software, and teach courses for the
purpose of training new computer systems engineers, with a particular emphasis on operating systems.</p>
</div>
</section>
<!-- Program Section -->
<section id="program" class="py-5 bg-secondary text-light">
<div class="container text-center">
<h2 class="display-4 mb-4">The Kernel Development Learning Pipeline (KDLP) Program</h2>
<p class="lead mb-5">A comprehensive pipeline designed to increase the quality of open source educational materials and quantity of open source engineers.
<div class="row">
<div class="col-lg-4 mb-4">
<div class="card bg-dark text-light border-0">
<div class="card-body">
<h5 class="card-title">Free Educational Resources</h5>
<p class="card-text">We provide free, open-source learning materials that anyone can access and
contribute to.</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card bg-dark text-light border-0">
<div class="card-body">
<h5 class="card-title">Hands-on with Open Source</h5>
<p class="card-text">We run our program using open source materials and aim to train others to contribute
to their development as a means to develop open source experience.</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card bg-dark text-light border-0">
<div class="card-body">
<h5 class="card-title">Guidance and mentorship</h5>
<p class="card-text">We connect motivated learners with experienced engineers to provide mentorship
and guidance in the world of open source software.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- More Section -->
<section id="more" class="py-5 text-center bg-primary text-light">
<div class="container">
<h2 class="display-4 mb-4">More information</h2>
<p class="lead mb-4">Check out the KDLP homepage to learn more about the Kernel Development Learning Pipeline</p>
<a href="https://kdlp.underground.software" class="btn btn-light btn-lg">KDLP</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-5 bg-dark text-light">
<div class="container text-center">
<h2 class="display-4 mb-4">Contact Us</h2>
<p class="lead mb-4">Have questions? Send us an email.</p>
<p><a href="mailto:joel@underground.software" class="text-light">joel@underground.software</a></p>
</div>
</section>
<!-- Footer -->
<footer class="py-4 bg-dark text-center text-light">
<p>© 2024 Underground Software Incorporated. This <a href="https://github.com/underground-software/underground.software">website</a> is <a href="/LICENSE">Free Software</a>.</p>
<p>Underground Software Incorporated is a 501(c)(3) nonprofit EIN 33-1546345</p>
</footer>
<!-- Bootstrap JS Bundle (Includes Popper) -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
</body>
</html>