-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
199 lines (190 loc) · 7.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootcamp Collab</title>
<link rel="icecream icon" href="./assets/images/hero/hero-min.png" />
<!-- Google Material Icons -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<link rel="stylesheet" href="./assets/css/index.css" />
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
</head>
<body>
<div class="page-container">
<div class="main-container">
<header class="header">
<nav class="nav-bar">
<div class="nav-mobile">
<a href="index.html">
<span class="material-symbols-rounded current"> Home </span>
</a>
<a href="html/about.html">
<span class="material-symbols-rounded"> info </span>
</a>
<a href="#">
<span class="material-symbols-rounded menu-button"> menu </span>
</a>
</div>
<div class="nav-desktop">
<span class="nav-span nav-span-current">
<a href="index.html"
><span class="nav-item nav-item-current"> Home </span>
</a>
</span>
<span class="nav-span">
<a href="html/open-source-projects.html" class="nav-item"
>Open Source Projects</a
>
</span>
<span class="nav-span">
<a href="html/about.html" class="about">
<span class="nav-item"> about </span>
</a>
</span>
<label class="hidden switch">
<input type="checkbox" id="theme-switch" />
<span class="slider round theme-button"></span>
<span class="visually-hidden">Theme switch toggle</span>
</label>
</div>
</nav>
</header>
<main class="main">
<section class="section-padding section-hero">
<div class="container container--hero">
<div class="hero grid grid--2-cols grid--center-v">
<div class="hero-text-box">
<span
id="current-local-time"
class="pre-heading display-block current-local-time"
></span>
<span id="greeting" class="pre-heading display-block">
Hello👋, bootcamp students!
</span>
<h1 class="heading-primary">
Scrimbas Exclusive Open Source Project
</h1>
<p class="hero-text">
Welcome bootcamp students to experience an opportunity to
practice forking, branching, making changes and making pull
requests to an open source project.
</p>
<p class="hero-text">
If you interested in joining this collaboration, join the
bootcamp with the button below.
</p>
<a
href="https://github.com/michaella23/bootcamp-collab"
target="_blank"
class="link link--hero margin-right-sm hover-effect"
>Project Repo</a
>
<a
href="https://scrimba.com/bootcamp"
target="_blank"
class="link link--hero scrimba hover-effect"
>Join the Bootcamp</a
>
</div>
<picture class="hero-img-box">
<source
srcset="./assets/images/hero/hero.webp"
type="image/webp"
/>
<source
srcset="./assets/images/hero/hero-min.png"
type="image/png"
/>
<img
src="./assets/images/hero/hero-min.png"
alt=""
class="hero-img"
/>
</picture>
</div>
</div>
</section>
<section class="section-padding section-scrimba-contributors">
<!-- section header -->
<div class="container">
<span class="pre-heading">Scrimba = ❤️</span>
<h2 class="heading-secondary">Meet our amazing contributors</h2>
</div>
<!-- section component -->
<div class="scrimba-contributors">
<div
class="container grid grid--2-cols scrimba-contributors--container"
>
<button class="load-more">
<ion-icon
name="arrow-down-outline"
class="load-more--icon"
></ion-icon>
</button>
</div>
</div>
</section>
</main>
<footer class="section-padding section-footer">
<div class="container">
<div class="footer-text-box center-text">
<p class="done-by">
This project is done by
<a
href="https://github.com/michaella23/bootcamp-collab"
class="done-by--link"
target="_blank"
>
Scrimba Bootcamp Students
</a>
|
<!--
DON'T REMOVE THIS UNTIL CURRENT IMAGE IS REPLACED
-->
<a
href="https://www.freepik.com/author/catalyststuff"
target="_blank"
class="done-by--link link-color"
>
Images by catalyststuff
</a>
on Freepik
</p>
</div>
</div>
</footer>
</div>
<div class="side-nav">
<label class="switch switch-side-nav">
<input type="checkbox" id="theme-switch" />
<span class="slider round theme-button"></span>
<span class="visually-hidden">Theme switch toggle</span>
</label>
<span class="nav-span">
<a href="html/open-source-projects.html" class="nav-item"
>Open Source Projects</a
>
</span>
</div>
</div>
<script src="./assets/javascript/app.js" type="Module"></script>
<script src="./assets/javascript/contributors.js" type="Module"></script>
<script
src="./assets/javascript/contributors-component.js"
type="Module"
></script>
<script src="./assets/javascript/nav.js"></script>
</body>
</html>