-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
334 lines (316 loc) · 11.4 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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Impact Wall</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- Add Bootstrap CSS and JavaScript -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="icon" href="img/11x.png" type="image/x-icon" />
<!-- Add this line for favicon -->
</head>
<body>
<header class="header-area overlay">
<nav class="navbar navbar-expand-md navbar-dark">
<div class="container">
<a href="index.html" class="navbar-brand">Impact Wall</a>
<button
type="button"
class="navbar-toggler collapsed"
data-toggle="collapse"
data-target="#main-nav"
>
<span class="menu-icon-bar"></span>
<span class="menu-icon-bar"></span>
<span class="menu-icon-bar"></span>
</button>
<div id="main-nav" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li>
<a href="#" class="nav-item nav-link active" data-i18n="navigation.home"
>Home</a
>
</li>
<li>
<a
href="#"
class="nav-item nav-link"
data-i18n="navigation.contributors"
>Contributors</a
>
</li>
<li>
<a
href="https://github.com/MedouneSGB/Impact-Wall"
class="nav-item nav-link"
data-i18n="navigation.contribute"
>Contribute</a
>
</li>
<li>
<a href="#" class="nav-item nav-link i18n">
<select id="lang">
<option value="" hidden data-i18n="selectLang.placeholder">
Choose a language
</option>
<option value="en" data-i18n="selectLang.en">
English
</option>
<option value="fr" data-i18n="selectLang.fr">French</option>
<option value="wolof" data-i18n="selectLang.wolof">
Wolof
</option>
</select>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="main-nav" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li>
<a
href="#"
class="nav-item nav-link active"
data-i18n="navigation.home"
>Home</a
>
</li>
<li>
<a
href="#"
class="nav-item nav-link"
data-i18n="navigation.contributors"
>Contributors</a
>
</li>
<li>
<a
href="https://github.com/MedouneSGB/Impact-Wall"
class="nav-item nav-link"
data-i18n="navigation.contribute"
>Contribute</a
>
</li>
<li>
<a href="#" class="nav-item nav-link i18n">
<select id="lang">
<option value="" hidden data-i18n="selectLang.placeholder">
Choose a language
</option>
<option value="en" data-i18n="selectLang.en">
English
</option>
<option value="fr" data-i18n="selectLang.fr">French</option>
<option value="wolof" data-i18n="selectLang.wolof">
Wolof
</option>
</select>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="banner">
<div class="container">
<h1>
<span data-i18n="content.header.title">Welcome to</span>
<span class="navbar-brand" style="color: #d2b863; font-size: 4.3rem"
>Impact-Wall</span
>
</h1>
<p data-i18n="content.header.tagline">
A wall highlighting people and organizations that have a good impact
</p>
<div
class="p-4 bg-light rounded rounded-pill shadow-sm mb-4"
style="margin-bottom: -4.5rem !important"
>
<div class="input-group">
<input
style="font-size: 2rem;"
type="search"
placeholder="What're you searching for?"
aria-describedby="button-addon1"
class="form-control border-0 bg-light"
id="searchInput"
/>
<div class="input-group-append">
<button
id="button-addon1"
type="submit"
class="btn btn-link text-primary"
onclick="searchFunction()"
>
<i class="fa fa-search fa-2x" style="color: #86763e"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- cards -->
<section id="heroes">
<div style="background-color: #d2b863">
<div class="container p-5">
<h1
class="m-5"
style="text-align: center; font-weight: bold; font-size: 40px"
>
<span data-i18n="content.heroes.title_first">One World</span>,
<span style="color: #ffffff" data-i18n="content.heroes.title_second"
>Many Heroes</span
>
</h1>
<hr />
<div class="row mt-5" id="heroesList">
<div class="col-md-3 col-sm-6 item">
<a href="./pages/marietou.html" class="card item-card card-block">
<img src="heroes/Marietou.jpeg" alt="" />
<h5 class="card-title p-2 mt-3 mb-3">Marietou DIEDHIOU</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/abdou.html" class="card item-card card-block">
<img src="heroes/abdourami.jpg" alt="" />
<h5 class="item-card-title mt-3 mb-3 p-2">Abdou TOURÉ</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/dofbi.html" class="card item-card card-block">
<img src="heroes/dofbi.jpg" alt="" />
<h5 class="card-title p-2 mt-3 mb-3">Mamadou DIAGNE</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/daouda.html" class="card item-card card-block">
<img src="heroes/daooda.jpg" alt="" />
<h5 class="card-title p-2 mt-3 mb-3">Daouda BA</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/elias.html" class="card item-card card-block">
<img src="heroes/elias.jpg" alt="" />
<h5 class="card-title p-2 mt-3 mb-3">Elias Waly BA</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/tonux.html" class="card item-card card-block">
<img src="heroes/tonux.jpg" alt="" />
<h5 class="card-title p-2 mt-3 mb-3">Ndongo SAMB</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/akd.html" class="card item-card card-block">
<img src="heroes/khadre.jpeg" alt="" />
<h5 class="card-title p-2 mt-3 mb-3">Abdoul Khadre DIALLO</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/maryTeuw.html" class="card item-card card-block">
<img src="heroes/maryTeuw.jpg" alt="Mary Teuw Niane" />
<h5 class="card-title p-2 mt-3 mb-3">Mary Teuw NIANE</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/rahim.html" class="card item-card card-block">
<img src="heroes/rahim.jpg" alt="Coach Rahim" />
<h5 class="card-title p-2 mt-3 mb-3">Coach Rahim</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/mouhamed.html" class="card item-card card-block">
<img src="heroes/Mouhamed.jpg" alt="Mouhamed Oury Diallo" />
<h5 class="card-title p-2 mt-3 mb-3">Mouhamed Oury Diallo</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/CheikhoumarDiagne.html" class="card item-card card-block">
<img src="heroes/CheikhoumarDiagne.png" alt="Mouhamed Oury Diallo" />
<h5 class="card-title p-2 mt-3 mb-3">Cheikh Oumar Diagne</h5>
</a>
</div>
<div class="col-md-3 col-sm-6 item">
<a href="./pages/mamadouDjigo.html" class="card item-card card-block">
<img src="heroes/mamadoudjigo.jpeg" alt="Mamadou Djigo" />
<h5 class="card-title p-2 mt-3 mb-3">Mamadou Djigo</h5>
</a>
</div>
</div>
<p id="noMatchMessage" style="display:none; text-align:center; font-size: 24px;" class="no_match_message">No match found !</p>
</div>
</div>
</section>
<!-- footer -->
<section class="contact-area" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-3">
<div class="contact-content text-center">
<a href="#" class="navbar-brand" style="font-size: 40px">Impact Wall</a>
<p data-i18n="footer.tagline">
A wall highlighting people and organizations that have a good impact
</p>
<div class="hr"></div>
<div class="contact-social">
<ul>
<li>
<a class="" href="https://github.com/MedouneSGB/Impact-Wall"
><i class="fab fa-github fa-10x"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer>
<p>
Copyright © 2023
<a href="#" class="navbar-brand" style="font-size: 2rem">Impact Wall</a
><a href="#" class="navbar-brand" style="font-size: 2rem; color: #d2b863"
>Hacktoberfest23</a
>
</p>
</footer>
</section>
<!-- =============== 1.9 Contact Area End ====================-->
<!-- =============== 1.9 Footer Area Start ====================-->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
<script src="https://unpkg.com/@andreasremdt/simple-translator@latest/dist/umd/translator.min.js"></script>
<script src="js/i18n.js"></script>
<script src="js/script.js"></script>
</body>
</html>