-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
582 lines (416 loc) · 23.3 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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,600,700|Roboto+Mono&display=swap" rel="stylesheet">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<meta name="generator" content="Hugo 0.55.6" />
<title>Python Benin</title>
<meta name="title" content="Python Benin">
<meta name="description" content="La communauté des utilisateurs du langage de programmation Python au Bénin">
<meta property="og:type" content="website">
<meta property="og:url" content="https://pythonbenin.com/">
<meta property="og:title" content="Python Benin">
<meta property="og:description" content="La communauté des utilisateurs du langage de programmation Python au Bénin">
<meta property="og:image" content="">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://pythonbenin.com/">
<meta property="twitter:title" content="Python Benin">
<meta property="twitter:description" content="La communauté des utilisateurs du langage de programmation Python au Bénin">
<meta property="twitter:image" content="La communauté des utilisateurs du langage de programmation Python au Bénin">
<title>Python Bénin</title>
<style>
.link {
text-decoration: underline;
font-weight: bold;
}
#mobilemenu {
transition: .3s;
}
.button-primary {
padding: 0.75rem 1rem;
background-color: #5C038B;
color: white;
font-family: 'Poppins';
font-weight: bold;
cursor: pointer;
}
.main-font {
font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
.secondary-font {
font-family: 'Roboto Mono';
}
.bg-pink {
background-color: #EA007B;
}
.bg-purple {
background-color: #5C038B;
}
.bg-purple-dark {
background-color:#420264;
}
.text-pink {
color: #EA007B;
}
.text-purple {
color: #5C038B;
}
.mobile-menu-item-bordered {
border: solid #5C038B 1px;
}
body {
font-family: 'Poppins', Arial, Helvetica, sans-serif;
background-color: #EDEEF2;
}
.container {
max-width: 1060px;
padding: 40px 40px;
margin: 0 auto;
}
#nav a {
font-weight: bold;
color: inherit;
}
#nav-border {
border-bottom: 1px solid #212529;
}
#main {
margin-top: 1em;
margin-bottom: 4em;
}
#home-jumbotron {
background-color: inherit;
}
.font-125 {
font-size: 125%;
}
.tag-btn {
margin-bottom: 0.3em;
}
img {
max-width: 100%;
}
@media (max-width: 400px) {
.container {
padding: inherit 15px;
}
.main-cta {
border: #EDEEF2 solid 1px;
background: transparent;
}
}
@media (max-width: 640px) {
.main-cta {
border: #EDEEF2 solid 1px;
background: transparent;
}
.nav-container {
padding-left: 0px;
}
}
</style>
</head>
<body>
<div>
<div class="bg-pink h-16 flex items-center">
<div class="mx-auto container nav-container">
<nav class="font-bold">
<div class="flex flex-row items-center justify-between ">
<div class="flex flex-row items-center">
<div class="bg-purple text-white pl-0 sm:text-xl font-bold h-20 mt-4 flex flex-row items-center">
<div class=" bg-purple-dark sm:hidden h-full flex-shrink-0 flex flex-center w-16" >
<button type="button" id="menu-open" class=" w-full h-full mx-auto focus:outline-none focus:text-gray-700" onclick="openMobileMenu()">
<svg class="m-auto" width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0V2H0V0H16ZM0 12H16V10H0V12ZM0 7H16V5H0V7Z" fill="white"/>
</svg>
</button>
<button type="button" id="menu-close" class="w-full h-full hidden mx-auto focus:outline-none focus:text-gray-700" onclick="closeMobileMenu()">
<svg class="m-auto" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.29296 7.00008L0 1.70712L1.41421 0.292908L6.70717 5.58586L12.0001 0.292915L13.4143 1.70713L8.12138 7.00008L13.4142 12.2929L12 13.7071L6.70717 8.41429L1.41433 13.7071L0.000116348 12.2929L5.29296 7.00008Z" fill="white"/>
</svg>
</button>
</div>
<a class="w-full h-full flex px-4" href="/">
<p class="m-auto">Python <br> Bénin</p>
</a>
</div>
</div>
<div class="flex flex-row sm:w-full justify-between">
<div class="hidden sm:block">
<a class="ml-10 text-white" href="/faq">FAQ</a>
<a class="ml-10 text-white" href="/partners">Partenaires</a>
</div>
<div>
<a class="main-cta ml-10 text-white hidden sm:inline bg-purple p-2 px-4" href="/propose-a-topic">Proposer un sujet</a>
<a class="ml-10 text-white uppercase" href="https://pythonbenin.com/en/">English</a>
</div>
</div>
</div>
</nav>
</div>
</div>
<div id="mobilemenu" class="bg-purple-dark py-0 z-50 h-0 overflow-hidden sm:hidden">
<nav class="nav-mobile pt-6 text-center font-bold flex flex-col">
<a class=" w-full text-white font-normal p-2 px-4 py-3" href="/">< Aller à l'acceuil</a>
<div class="flex flex-row w-full mt-2">
<a class="text-white text-center w-1/2 mobile-menu-item-bordered py-3" href="/faq">FAQ</a>
<a class="text-white w-1/2 text-center mobile-menu-item-bordered py-3" href="/partners">Partenaires</a>
</div>
<div class="mb-8 mt-8 ">
<a class=" text-black bg-white max-w-xm p-2 px-16 " href="/propose-a-topic">Proposer un sujet</a>
</div>
</nav>
</div>
</div>
<div>
<main>
<div class=" bg-white flex pt-16">
<div class="container mx-auto">
<h1 class="text-4xl font-bold text-purple">La communauté des utilisateurs du langage de programmation Python au Bénin</h1>
<div class="card-next-meetup mt-8">
<p class="font-bold text-gray-700 uppercase">Prochain Meetup</p>
<p class="text-2xl text-pink font-bold">Python Benin, Une année après</p>
<div class="meetup-info">
<div class="info-row flex flex-row items-center">
<img src="https://pythonbenin.com/img/icon/date.svg" alt="">
<p class="ml-2 secondary-font">28/12/2019 - 17:00</p>
</div>
<div class="info-row flex flex-row items-center mt-1">
<img src="https://pythonbenin.com/img/icon/location.svg" alt="">
<p class="ml-2 secondary-font">Zoom</p>
</div>
</div>
<p class=" mt-8 text-sm secondary-font">Rejoignez la communauté sur
<a href="https://join.slack.com/t/pythonbenin/shared_invite/enQtODAxMjg2Njk5NzYzLTEwNTQwOTg4MGI4ZGVkYzgyOTA2NTQ2OTc2YmRmZjkyODJjNWYyMDc0ODg4ZjRmZmMxNDI4OWVlNTFhM2I5YmE">
<svg style="display: inline;" fill="currentColor" preserveAspectRatio="xMidYMid meet" height="24" width="24" viewBox="0 0 40 40" style="vertical-align: middle; color: rgb(197, 201, 204);"><g><path d="m35.4 17.3q1.4 0 2.3 0.9t0.9 2.3q0 2.2-2 2.9l-3.9 1.3 1.3 3.7q0.1 0.5 0.1 1.1 0 1.3-0.9 2.3t-2.3 0.9q-1 0-1.9-0.6t-1.2-1.6l-1.2-3.7-6.9 2.4 1.2 3.7q0.2 0.5 0.2 1 0 1.3-0.9 2.3t-2.3 0.9q-1.1 0-1.9-0.6t-1.2-1.6l-1.2-3.6-3.4 1.2q-0.7 0.2-1.2 0.2-1.3 0-2.2-0.9t-0.9-2.3q0-1 0.6-1.9t1.6-1.1l3.5-1.2-2.4-7-3.5 1.2q-0.5 0.2-1 0.2-1.4 0-2.3-0.9t-0.9-2.3q0-1 0.6-1.9t1.6-1.2l3.5-1.1-1.2-3.6q-0.1-0.5-0.1-1 0-1.4 0.9-2.3t2.3-1q1 0 1.9 0.6t1.1 1.6l1.3 3.6 6.9-2.3-1.2-3.6q-0.2-0.5-0.2-1.1 0-1.3 0.9-2.2t2.3-1q1.1 0 1.9 0.6t1.2 1.6l1.2 3.6 3.6-1.2q0.5-0.2 1-0.2 1.3 0 2.3 0.9t0.9 2.2q0 1-0.7 1.8t-1.6 1.2l-3.5 1.2 2.3 7.1 3.7-1.3q0.5-0.2 1-0.2z m-17.7 5.9l6.9-2.4-2.3-7-7 2.4z"></path></g></svg> slack</a> -
<a href="https://twitter.com/PythonBenin"><svg style="display: inline;" fill="currentColor" preserveAspectRatio="xMidYMid meet" height="24" width="24" viewBox="0 0 40 40" style="vertical-align: middle; color: rgb(197, 201, 204);"><g><path d="m37.7 9.1q-1.5 2.2-3.7 3.7 0.1 0.3 0.1 1 0 2.9-0.9 5.8t-2.6 5.5-4.1 4.7-5.7 3.3-7.2 1.2q-6.1 0-11.1-3.3 0.8 0.1 1.7 0.1 5 0 9-3-2.4-0.1-4.2-1.5t-2.6-3.5q0.8 0.1 1.4 0.1 1 0 1.9-0.3-2.5-0.5-4.1-2.5t-1.7-4.6v0q1.5 0.8 3.3 0.9-1.5-1-2.4-2.6t-0.8-3.4q0-2 0.9-3.7 2.7 3.4 6.6 5.4t8.3 2.2q-0.2-0.9-0.2-1.7 0-3 2.1-5.1t5.1-2.1q3.2 0 5.3 2.3 2.4-0.5 4.6-1.7-0.8 2.5-3.2 3.9 2.1-0.2 4.2-1.1z"></path></g></svg> twitter</a> </p>
</div>
</div>
</div>
<div class="py-8">
<div class="container">
<div class="flex flex-row justify-between items-center flex-wrap">
<h1 class="text-4xl font-bold text-purple">Précédents meetups</h1>
<div class="algolia hidden">
<input type="text" class="p-2" placeholder="Chercher un sujet">
</div>
</div>
<div class="meetup-list my-8">
<a href="/meetups/1/">
<div class="meetup-card bg-white p-8 mb-8">
<div class="border-b-solid border-b-2 border-b-gray-600 pb-4">
<p class="uppercase font-bold text-sm opacity-75 text-gray-700">Meetup #1</p>
<div class="flex flex-row flex-wrap justify-between items-center">
<div class="">
<p class="text-pink text-xl font-bold">1 - Découvrez les entreprises Béninoises utilisant le langage de programmation Python</p>
</div>
<div class="flex flex-row secondary-font text-sm flex-wrap" >
<div class="info-row flex flex-row items-center mt-1">
<img src="https://pythonbenin.com/img/icon/location.svg" alt="">
<p class="ml-1 secondary-font">Solidar'It</p>
</div>
<div class="info-row flex flex-row items-center mt-1 ml-4">
<img src="https://pythonbenin.com/img/icon/date.svg" alt="">
<p class="ml-1 secondary-font">16/02/2019 - 09:00</p>
</div>
</div>
</div>
</div>
<div class="mt-4 meetup-talk-list flex flex-row flex-wrap">
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://media.licdn.com/dms/image/C5603AQG9MYvofN_rQw/profile-displayphoto-shrink_200_200/0?e=1582156800&v=beta&t=zDsB3zyXKCzjA0PVKnwNa6qAqyco8p4y5QiscZDZKeg" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Comment Right Com utilise Python pour offrir la meilleure expérience client?<span
class="font-normal"> <br>Christelle Segoun</span></p>
</div>
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://pbs.twimg.com/profile_images/649537028334469120/GkxrWHkw_400x400.png" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Faire du Trading et Python<span
class="font-normal"> <br>Nelson Kamga & Ulrich Yakoun</span></p>
</div>
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://avatars2.githubusercontent.com/u/14887303?s=460&v=4" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Comment OpenSI fait du DevOps avec le langage<span
class="font-normal"> <br>Shadaï Ali</span></p>
</div>
</div>
</div>
</a>
<a href="/meetups/2/">
<div class="meetup-card bg-white p-8 mb-8">
<div class="border-b-solid border-b-2 border-b-gray-600 pb-4">
<p class="uppercase font-bold text-sm opacity-75 text-gray-700">Meetup #2</p>
<div class="flex flex-row flex-wrap justify-between items-center">
<div class="">
<p class="text-pink text-xl font-bold">2 - La Bataille des Frameworks Web Python</p>
</div>
<div class="flex flex-row secondary-font text-sm flex-wrap" >
<div class="info-row flex flex-row items-center mt-1">
<img src="https://pythonbenin.com/img/icon/location.svg" alt="">
<p class="ml-1 secondary-font">Solidar'It</p>
</div>
<div class="info-row flex flex-row items-center mt-1 ml-4">
<img src="https://pythonbenin.com/img/icon/date.svg" alt="">
<p class="ml-1 secondary-font">08/06/2019 - 09:00</p>
</div>
</div>
</div>
</div>
<div class="mt-4 meetup-talk-list flex flex-row flex-wrap">
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://pbs.twimg.com/profile_images/1199055227275632642/4cW6S-U7_400x400.jpg" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Découvrir le Framework Django<span
class="font-normal"> <br>Abdoul Salim GAOU-KPASSI</span></p>
</div>
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://avatars2.githubusercontent.com/u/8492909?s=460&v=4" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Comprendre comment fonctionne Flask<span
class="font-normal"> <br>Nelson Kamga</span></p>
</div>
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://avatars0.githubusercontent.com/u/11293401?s=460&v=4" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Découvrir le Framework Masonite<span
class="font-normal"> <br>Junior Gantin</span></p>
</div>
</div>
</div>
</a>
<a href="/meetups/3/">
<div class="meetup-card bg-white p-8 mb-8">
<div class="border-b-solid border-b-2 border-b-gray-600 pb-4">
<p class="uppercase font-bold text-sm opacity-75 text-gray-700">Meetup #3</p>
<div class="flex flex-row flex-wrap justify-between items-center">
<div class="">
<p class="text-pink text-xl font-bold">3 - Comment nous avons construit une librairie Python pour une de passerelle de paiement</p>
</div>
<div class="flex flex-row secondary-font text-sm flex-wrap" >
<div class="info-row flex flex-row items-center mt-1">
<img src="https://pythonbenin.com/img/icon/location.svg" alt="">
<p class="ml-1 secondary-font">ZOOM</p>
</div>
<div class="info-row flex flex-row items-center mt-1 ml-4">
<img src="https://pythonbenin.com/img/icon/date.svg" alt="">
<p class="ml-1 secondary-font">14/07/2019 - 18:00</p>
</div>
</div>
</div>
</div>
<div class="mt-4 meetup-talk-list flex flex-row flex-wrap">
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://avatars0.githubusercontent.com/u/11293401?s=460&v=4" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Une librairie Python pour KkiaPay<span
class="font-normal"> <br>Junior Gantin</span></p>
</div>
</div>
</div>
</a>
<a href="/meetups/4/">
<div class="meetup-card bg-white p-8 mb-8">
<div class="border-b-solid border-b-2 border-b-gray-600 pb-4">
<p class="uppercase font-bold text-sm opacity-75 text-gray-700">Meetup #4</p>
<div class="flex flex-row flex-wrap justify-between items-center">
<div class="">
<p class="text-pink text-xl font-bold">4 - Créer des jeux vidéos avec Python</p>
</div>
<div class="flex flex-row secondary-font text-sm flex-wrap" >
<div class="info-row flex flex-row items-center mt-1">
<img src="https://pythonbenin.com/img/icon/location.svg" alt="">
<p class="ml-1 secondary-font">Solidar'It</p>
</div>
<div class="info-row flex flex-row items-center mt-1 ml-4">
<img src="https://pythonbenin.com/img/icon/date.svg" alt="">
<p class="ml-1 secondary-font">03/08/2019 - 09:00</p>
</div>
</div>
</div>
</div>
<div class="mt-4 meetup-talk-list flex flex-row flex-wrap">
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://pbs.twimg.com/profile_images/1132688489470992386/QiCYIwC7_400x400.png" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Créer des jeux vidéos avec Python et Pygame<span
class="font-normal"> <br>Thomas BOKO</span></p>
</div>
</div>
</div>
</a>
<a href="/meetups/5/">
<div class="meetup-card bg-white p-8 mb-8">
<div class="border-b-solid border-b-2 border-b-gray-600 pb-4">
<p class="uppercase font-bold text-sm opacity-75 text-gray-700">Meetup #5</p>
<div class="flex flex-row flex-wrap justify-between items-center">
<div class="">
<p class="text-pink text-xl font-bold">5 - Python & Data Science</p>
</div>
<div class="flex flex-row secondary-font text-sm flex-wrap" >
<div class="info-row flex flex-row items-center mt-1">
<img src="https://pythonbenin.com/img/icon/location.svg" alt="">
<p class="ml-1 secondary-font">Solidar'It</p>
</div>
<div class="info-row flex flex-row items-center mt-1 ml-4">
<img src="https://pythonbenin.com/img/icon/date.svg" alt="">
<p class="ml-1 secondary-font">05/10/2019 - 09:00</p>
</div>
</div>
</div>
</div>
<div class="mt-4 meetup-talk-list flex flex-row flex-wrap">
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://media.licdn.com/dms/image/C4D03AQEPuUTV2jfIzA/profile-displayphoto-shrink_200_200/0?e=1582156800&v=beta&t=VLqVJ3lptDrpCX2HxxaeuNskNMydGn-mBOSgS0ymXRw" alt="">
</div>
<p class="ml-4 font-bold secondary-font">Python & Data Science<span
class="font-normal"> <br>Emmanuel Hodonou</span></p>
</div>
<div class="talk-element max-w-sm flex flex-row mr-10 mb-10 md:flex-shrink-0 md:flex-nowrap">
<div class="avatar flex-shrink-0 rounded-full overflow-hidden bg-gray-300" style="width:66px; height:66px;">
<img width="100%" height="100%" src="https://media.licdn.com/dms/image/C5603AQEXpRxoAp622g/profile-displayphoto-shrink_800_800/0?e=1582156800&v=beta&t=NKAPqyYjNc_mmu5GYg574afIaVl7VleoCAcDOqHwt54" alt="">
</div>
<p class="ml-4 font-bold secondary-font">PyCon Africa Recap<span
class="font-normal"> <br>Gloria Tchegnonsi</span></p>
</div>
</div>
</div>
</a>
</div>
</div>
<p class=" mt-8 text text-gray-700 font-bold text-center"> Python Bénin </p>
<p class=" text-sm secondary-font text-center mb-8">
<a href="https://join.slack.com/t/pythonbenin/shared_invite/enQtODAxMjg2Njk5NzYzLTEwNTQwOTg4MGI4ZGVkYzgyOTA2NTQ2OTc2YmRmZjkyODJjNWYyMDc0ODg4ZjRmZmMxNDI4OWVlNTFhM2I5YmE">Slack</a>
- <a href="https://twitter.com/PythonBenin">Twitter</a>
- <a href="https://github.com/PythonBenin/">Github</a> </p>
</main>
</div>
<script src="https://pythonbenin.com/js/feather.min.js"></script>
<script>
feather.replace()
var mobilemenu = document.getElementById('mobilemenu')
function openMobileMenu () {
mobilemenu.style.height = "220px"
document.getElementById('menu-open').style.display = "none"
document.getElementById('menu-close').style.display = "inline"
}
function closeMobileMenu () {
mobilemenu.style.height = "0"
document.getElementById('menu-open').style.display = "inline"
document.getElementById('menu-close').style.display = "none"
}
</script>
</body>
</html>