-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
287 lines (280 loc) · 9.93 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/font-awesome.min.css" />
<link rel="stylesheet" href="./css/bootstrap.css" />
<link rel="stylesheet" href="./css/style.css" />
<title>DevPath</title>
</head>
<body>
<!-- Begin Navbar -->
<nav class="navbar navbar-expand-sm bg-dark navbar-dark fixed-top">
<div class="container">
<a href="#" class="navbar-brand"
><img class="logo" src="..//img/devpathlogo.png" alt="DevPath"
/></a>
<button
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="#home-section" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#learn-head-section" class="nav-link">Learn</a>
</li>
<li class="nav-item">
<a href="#mentor-head-section" class="nav-link">Resources</a>
</li>
<li class="nav-item">
<a href="#projects-head-section" class="nav-link">Projects</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<!-- Begin Home Section -->
<header id="home-section">
<div class="dark-overlay">
<div class="home-inner">
<div class="container">
<div class="row">
<!-- Begin check blocks -->
<div class="col-lg-8 d-none d-lg-block">
<h1 class="display-4">
Get real world experience building awesome projects!
</h1>
<div class="d-flex flex-row">
<div class="p-4 align-self-start">
<i class="fa fa-check"></i>
</div>
<div class="p-4 align-self-end">
Learn to work in an agile team environment on production
quality projects.
</div>
</div>
<div class="d-flex flex-row">
<div class="p-4 align-self-start">
<i class="fa fa-check"></i>
</div>
<div class="p-4 align-self-end">
Network with other developers, make new friends and build
cool stuff to share with the community.
</div>
</div>
<div class="d-flex flex-row">
<div class="p-4 align-self-start">
<i class="fa fa-check"></i>
</div>
<div class="p-4 align-self-end">
Get expert advice from project mentors and members of the
DevPath open source community!
</div>
</div>
</div>
<!-- end Check blocks -->
<!-- Begin link block -->
<div class="col-lg-4">
<div class="card bg-form text-center card-form">
<div class="card-body">
<h3>Get Involved</h3>
<p>Be a part of the community!</p>
<a
href="https://join.slack.com/t/devpath/shared_invite/enQtMzQyNDU0MjA4NDcxLWNlNWE1ZDM5YmJmOTU4NDk1MzljY2YwNWZiN2NmNmQxYmI3ZmNlMGU5MjFiMzI0Zjg0M2M2NzhmNzIzZTNmZTE"
class="btn btn-outline-light btn-block mt-2"
><i class="fa fa-slack mr-4" aria-hidden="true"></i> Join
us on #Slack</a
>
<a
href="https://github.com/TheDevPath"
class="btn btn-outline-light btn-block mt-2"
><i
class="fa fa-github-square mr-4"
aria-hidden="true"
></i>
Join us on Github</a
>
<a
href="https://www.patreon.com/DevPath"
class="btn btn-outline-light btn-block mt-2"
><i class="fa fa-gratipay mr-4" aria-hidden="true"></i> Be
DevPath Patron</a
>
</div>
</div>
</div>
<!-- end link block -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end home-inner -->
</div>
<!-- end dark-overlay -->
</header>
<!-- end home section -->
<!-- Begin Learn Head -->
<section id="learn-head-section">
<div class="container">
<div class="row">
<div class="col text-center">
<div class="p-5">
<h1 class="display-4">
Learn <i class="fa fa-code-fork" aria-hidden="true"></i>
</h1>
<p class="lead">
Find your DevPath and create your own branch of the Open Source
World!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Learn Head-->
<!-- Learn Section -->
<section id="learn-section" class="bg-light text-dark py-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<img
src="/img/learn-section.jpg"
alt="Learning Path"
class="img-fluid mb-3 rounded-circle"
/>
</div>
<div class="col-md-6">
<div class="d-flex flex-row">
<div class="p-4 align-self-start">
<h1><i class="fa fa-book"></i></h1>
</div>
<div class="p-4 align-self-end">
Start your learning journey today! Network with other
developers, make new friends and build cool stuff to share with
the community.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Learn Section -->
<!-- Begin Mentor Head -->
<section id="mentor-head-section">
<div class="container">
<div class="row">
<div class="col text-center">
<div class="p-5">
<h1 class="display-4">
Mentor <i class="fa fa-handshake-o" aria-hidden="true"></i>
</h1>
<p class="lead">
Lend a helping hand to aspiring new developers and put out
awsome OSS in the process!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Mentor Head-->
<!-- Mentor Section -->
<section id="mentor-section" class="bg-light text-dark py-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<img
src="./img/teach.jpg"
alt="Learning Path"
class="img-fluid mb-3 rounded-circle"
/>
</div>
<div class="col-md-6">
<div class="d-flex flex-row">
<div class="p-4 align-self-start">
<h1><i class="fa fa-book"></i></h1>
</div>
<div class="p-4 align-self-end">
Share your knowledge today! Network with other developers, make
new friends and build cool stuff to share with the community.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Mentor Section -->
<!-- Begin Projects Head -->
<section id="projects-head-section">
<div class="container">
<div class="row">
<div class="col text-center">
<div class="p-5">
<h1 class="display-4">
Projects <i class="fa fa-cogs" aria-hidden="true"></i>
</h1>
<p class="lead">
Don't be shy get your hands dirty, work with experienced pros
and aspiring new developers and put out awsome OSS in the
process!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Projects Head-->
<!-- Projects Section -->
<section id="projects-section" class="bg-light text-dark py-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<img
src="/img/projects.jpg"
alt="Learning Path"
class="img-fluid mb-3 rounded"
/>
</div>
<div class="col-md-6">
<div class="d-flex flex-row">
<div class="p-4 align-self-start">
<h1><i class="fa fa-book"></i></h1>
</div>
<div class="p-4 align-self-end">
Jump in on one of our latest projects and lend a helping hand!
If your a new or aspiring developer it is a great way to get
your feet wet in a no pressure setting!. Have a bit more
experience? Maybe you can walk a new developer through the
process.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Projects Section -->
<a
href="https://www.elegantthemes.com/affiliates/idevaffiliate.php?id=69065_5_1_19"
target="_blank"
rel="nofollow"
><img
style="border: 0px"
src="https://www.elegantthemes.com/affiliates/media/banners/divi_468x60.jpg"
width="468"
height="60"
alt="Divi WordPress Theme"
/></a>
<script src="../js/jquery.min.js"></script>
<script src="../js/popper.min.js"></script>
<script src="../js/bootstrap.min.js"></script>
</body>
</html>