-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendrier.html
executable file
·591 lines (573 loc) · 20 KB
/
calendrier.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
583
584
585
586
587
588
589
590
591
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>TouCont'Fé | Calendrier</title>
<!-- SEO Meta Tags-->
<meta name="description" content="TouCont'Fé - Improvisation à Nice" />
<meta name="keywords" content="improvisation, impro, nice, théâtre" />
<meta name="author" content="TouCont'Fé" />
<!-- Viewport-->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Favicon and Touch Icons-->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/img/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/img/site.webmanifest" />
<link
rel="mask-icon"
color="#5bbad5"
href="./assets/img/safari-pinned-tab.svg"
/>
<meta name="msapplication-TileColor" content="#766df4" />
<meta name="theme-color" content="#ffffff" />
<!-- Google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap"
rel="stylesheet"
/>
<!-- Vendor Styles-->
<link
rel="stylesheet"
media="screen"
href="./assets/vendor/simplebar/dist/simplebar.min.css"
/>
<!-- Main Theme Styles + Bootstrap-->
<link rel="stylesheet" media="screen" href="./assets/css/theme.min.css" />
<!-- Demo Specific Styles -->
<style>
:root {
--cx-primary: #ff3f3a;
--cx-primary-rgb: 255, 63, 58;
--cx-gradient-from-color: #ff3f3a;
--cx-gradient-to-color: #f75e05;
--cx-link-color: #ff3f3a;
--cx-link-hover-color: #ff0d07;
}
.btn-primary {
--cx-btn-bg: #ff3f3a;
--cx-btn-border-color: #ff3f3a;
--cx-btn-hover-bg: #ff1a14;
--cx-btn-active-bg: #ff1a14;
--cx-btn-hover-border-color: #ff1a14;
--cx-btn-active-border-color: #ff1a14;
}
.btn-outline-primary {
--cx-btn-color: #ff3f3a;
--cx-btn-border-color: rgba(255, 63, 58, 0.4);
--cx-btn-hover-bg: #ff3f3a;
--cx-btn-active-bg: #ff3f3a;
--cx-btn-hover-border-color: #ff3f3a;
--cx-btn-active-border-color: #ff3f3a;
}
.btn-translucent-primary {
--cx-btn-color: #ff3f3a;
--cx-btn-bg: rgba(255, 63, 58, 0.2);
--cx-btn-hover-bg: #ff3f3a;
--cx-btn-active-bg: #ff3f3a;
}
.btn-hover-shadow:hover.btn-primary,
.btn-hover-shadow:hover.btn-outline-primary,
.btn-hover-shadow:hover.btn-translucent-primary,
.btn-hover-shadow:hover.btn-gradient {
--cx-btn-hover-shadow-color: rgba(255, 63, 58, 0.92);
}
.btn-scroll-top {
--cx-btn-scroll-top-bg: #ff3f3a;
--cx-btn-scroll-top-hover-bg: #ff1a14;
}
.accordion {
--cx-accordion-active-color: #ff3f3a;
--cx-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3e%3cpath fill-rule='evenodd' d='M7.999.667c.368 0 .667.298.667.667v6h6c.368 0 .667.298.667.667s-.299.667-.667.667h-6v6c0 .368-.298.667-.667.667s-.667-.299-.667-.667v-6h-6C.964 8.667.666 8.369.666 8s.298-.667.667-.667h6v-6c0-.368.298-.667.667-.667z' fill='%23ff3f3a'/%3e%3c/svg%3e");
--cx-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3e%3cpath fill-rule='evenodd' d='M.666 8c0-.368.298-.667.667-.667v1.333C.964 8.666.666 8.368.666 8zm14 0v.667H1.333V7.333h13.333V8zm0 0v.667c.368 0 .667-.298.667-.667s-.299-.667-.667-.667V8z' fill='%23ff3f3a'/%3e%3c/svg%3e");
}
</style>
<!-- Page loading styles-->
<style>
.page-loading {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 0.4s 0.2s ease-in-out;
transition: all 0.4s 0.2s ease-in-out;
background-color: #fff;
opacity: 0;
visibility: hidden;
z-index: 9999;
}
.page-loading.active {
opacity: 1;
visibility: visible;
}
.page-loading-inner {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
opacity: 0;
}
.page-loading.active > .page-loading-inner {
opacity: 1;
}
.page-loading-inner > span {
display: block;
font-size: 1rem;
font-weight: normal;
color: #787a80;
}
.page-spinner {
display: inline-block;
width: 2.75rem;
height: 2.75rem;
margin-bottom: 0.75rem;
vertical-align: text-bottom;
background-color: #cfcfd1;
border-radius: 50%;
opacity: 0;
-webkit-animation: spinner 0.75s linear infinite;
animation: spinner 0.75s linear infinite;
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes spinner {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
</style>
<!-- Page loading scripts-->
<script>
(function () {
window.onload = function () {
var preloader = document.querySelector(".page-loading");
preloader.classList.remove("active");
setTimeout(function () {
preloader.remove();
}, 2000);
};
})();
</script>
</head>
<!-- Body-->
<body>
<!-- Page loading spinner-->
<div class="page-loading active">
<div class="page-loading-inner">
<div class="page-spinner"></div>
<span>Chargement...</span>
</div>
</div>
<!-- Main content-->
<!-- Wraps everything except footer to push footer to the bottom of the page if there is little content -->
<main class="page-wrapper position-relative">
<!-- Navbar -->
<!-- Remove "navbar-sticky" class to make navigation bar scrollable with the page -->
<header
class="header navbar navbar-expand-lg navbar-light navbar-sticky navbar-floating"
>
<div class="container px-0 px-xl-3">
<a
class="navbar-brand order-lg-1 me-lg-5 me-0 pe-lg-2"
href="index.html"
>
<img
src="./assets/img/logo/logo-texte.svg"
alt="Logo TouCont'Fé"
width="130"
/>
</a>
<div class="d-flex align-items-center order-lg-3">
<a
class="btn btn-gradient btn-hover-shadow d-sm-inline-block d-none ms-4"
href="https://www.helloasso.com/associations/toucont-fe"
>Billetterie</a
>
<button
class="navbar-toggler ms-1 me-n3"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse1"
aria-expanded="false"
>
<span class="navbar-toggler-icon"></span>
</button>
</div>
<nav class="collapse navbar-collapse order-lg-2" id="navbarCollapse1">
<ul class="navbar-nav me-auto text-nowrap">
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
data-bs-toggle="dropdown"
>La Troupe</a
>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="troupe.html">Nos Membres</a>
</li>
<li>
<a class="dropdown-item" href="hymne.html">Notre Hymne</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" href="calendrier.html">Calendrier</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://linktr.ee/toucontfe"
>Réseaux Sociaux</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item d-sm-none d-block">
<a
class="m-3 btn btn-sm btn-gradient btn-hover-shadow"
href="https://www.helloasso.com/associations/toucont-fe"
>Billetterie</a
>
</li>
</ul>
</nav>
</div>
</header>
<!-- Events-->
<section
class="pt-4 pb-4 mt-4 pt-lg-5 pb-lg-6 pb-sm-5 bg-repeat-0 bg-position-center-x bg-size-cover"
style="background-image: url(./assets/img/shapes/shapes-event.svg)"
>
<div class="container">
<h3 class="mb-2 text-center h6 text-uppercase">
Prochains spectacles
</h3>
<h2 class="text-center h1 mb-lg-5 pb-md-2">Où et Quand nous voir</h2>
<!-- Events list made of horizontal cards -->
<div
class="py-3 mb-4 card card-horizontal card-hover px-sm-5 py-sm-0"
>
<div
class="flex-shrink-0 border-0 card-header my-sm-4 ms-sm-n2 py-sm-2 px-sm-0"
>
<div class="d-flex">
<span
class="mb-0 display-4 text-primary"
style="font-size: 3rem"
>18</span
>
<div class="ms-3 ps-1">
<h6 class="mb-1 h5">Jan</h6>
<span class="text-muted">21:00</span>
</div>
</div>
</div>
<div class="py-0 card-body m-sm-4 py-sm-2 px-sm-3">
<h3 class="mb-2 h5 mb-sm-1">
<a href="https://bouffscene.fr/?page_id=966" class="nav-link"
>Le Banc</a
>
</h3>
<a
href="https://maps.app.goo.gl/7v5WaGEhVzTnJr9V9"
class="nav-link"
><span class="text-muted">Le Bouff'Scène, Nice</span></a
>
</div>
<div
class="flex-shrink-0 mt-5 border-0 card-footer my-sm-4 me-sm-n2 py-sm-2 px-sm-0"
>
<a
href="https://www.billetweb.fr/improvgames1"
class="btn btn-outline-primary btn-hover-shadow d-sm-inline-block d-block"
>Réserver</a
>
</div>
</div>
<div
class="py-3 mb-4 card card-horizontal card-hover px-sm-5 py-sm-0"
>
<div
class="flex-shrink-0 border-0 card-header my-sm-4 ms-sm-n2 py-sm-2 px-sm-0"
>
<div class="d-flex">
<span
class="mb-0 display-4 text-primary"
style="font-size: 3rem"
>21</span
>
<div class="ms-3 ps-1">
<h6 class="mb-1 h5">Fév</h6>
<span class="text-muted">20:30</span>
</div>
</div>
</div>
<div class="py-0 card-body m-sm-4 py-sm-2 px-sm-3">
<h3 class="mb-2 h5 mb-sm-1">
<a
href="https://www.theatredelacite.fr/spectacles.php?li=1&id=1597&pa=2"
class="nav-link"
>Match TCF x Impropistou (Avignon)</a
>
</h3>
<a
href="https://maps.app.goo.gl/LRTSZiYx1XraaHQY7"
class="nav-link"
><span class="text-muted">Théâtre de la Cité, Nice</span></a
>
</div>
<div
class="flex-shrink-0 mt-5 border-0 card-footer my-sm-4 me-sm-n2 py-sm-2 px-sm-0"
>
<a
href="https://www.vostickets.fr/Billet/FR/representation-THEATRE_CITE-29194-0.wb?REFID=RJoJAAAAAABGAQ"
class="btn btn-outline-primary btn-hover-shadow d-sm-inline-block d-block"
>Réserver</a
>
</div>
</div>
<div
class="py-3 mb-4 card card-horizontal card-hover px-sm-5 py-sm-0"
>
<div
class="flex-shrink-0 border-0 card-header my-sm-4 ms-sm-n2 py-sm-2 px-sm-0"
>
<div class="d-flex">
<span
class="mb-0 display-4 text-primary"
style="font-size: 3rem"
>22</span
>
<div class="ms-3 ps-1">
<h6 class="mb-1 h5">Mar</h6>
<span class="text-muted">20:00</span>
</div>
</div>
</div>
<div class="py-0 card-body m-sm-4 py-sm-2 px-sm-3">
<h3 class="mb-2 h5 mb-sm-1">
<a
href="https://www.nice.fr/fr/activites-et-loisirs/theatre-de-la-tour"
class="nav-link"
>Match TCF x F'Prime (Aix-en-Provence)</a
>
</h3>
<a
href="https://maps.app.goo.gl/Zb7VBZuHJyjef7Gi7"
class="nav-link"
><span class="text-muted"
>Théâtre de la Tour Gorbella, Nice</span
></a
>
</div>
<div
class="flex-shrink-0 mt-5 border-0 card-footer my-sm-4 me-sm-n2 py-sm-2 px-sm-0"
>
<a
href="https://animanice.notre-billetterie.fr/billets"
class="btn btn-outline-primary btn-hover-shadow d-sm-inline-block d-block"
>Réserver</a
>
</div>
</div>
<!-- Fin events -->
</div>
</section>
</main>
<!-- Footer -->
<footer class="pt-4 footer pt-sm-5 bg-dark">
<div class="container py-3">
<div class="row">
<div
class="order-1 mb-4 col-lg-3 col-md-4 col-sm-6 order-lg-1 mb-lg-0"
>
<p class="mb-3 opacity-60 mb-sm-4 pb-lg-3 fs-xs text-light">
Improvisateurs niçois élevés sur les planches du Théâtre de la
Cité, les Toucont'Fé vous accueillent pour des matches, cabarets,
et formats longs.
</p>
</div>
<div
class="order-1 mb-4 col-lg-2 col-sm-12 col-6 order-lg-2 order-sm-4 mb-lg-0"
>
<h3 class="pb-1 mb-2 h6 text-uppercase text-light">Navigation</h3>
<ul class="nav nav-light flex-lg-column flex-sm-row flex-column">
<li class="mb-2 nav-item">
<a
href="troupe.html"
class="p-0 nav-link me-lg-0 me-sm-4 fw-normal"
>La Troupe</a
>
</li>
<li class="mb-2 nav-item">
<a
href="calendrier.html"
class="p-0 nav-link me-lg-0 me-sm-4 fw-normal"
>Calendrier</a
>
</li>
<li class="mb-2 nav-item">
<a
href="contact.html"
class="p-0 nav-link me-lg-0 me-sm-4 fw-normal"
>Contact</a
>
</li>
</ul>
</div>
<div
class="order-2 mb-4 col-lg-2 col-sm-12 col-6 order-lg-3 order-sm-5 mb-lg-0"
>
<h3 class="pb-1 mb-2 h6 text-uppercase text-light">
Réseaux Sociaux
</h3>
<ul class="nav nav-light flex-lg-column flex-sm-row flex-column">
<li class="mb-2 nav-item">
<a
href="https://www.facebook.com/toucontfe/"
class="p-0 nav-link me-lg-0 me-sm-4 fw-normal"
>Facebook</a
>
</li>
<li class="mb-2 nav-item">
<a
href="https://www.instagram.com/toucontfe"
class="p-0 nav-link me-lg-0 me-sm-4 fw-normal"
>Instagram</a
>
</li>
<li class="mb-2 nav-item">
<a
href="https://www.youtube.com/@Impro-TouContFe"
class="p-0 nav-link me-lg-0 me-sm-4 fw-normal"
>YouTube</a
>
</li>
</ul>
</div>
<div
class="order-3 mb-4 col-lg-2 col-md-4 order-lg-4 order-sm-3 mb-md-0"
>
<h3 class="pb-1 mb-2 h6 text-uppercase text-light">Contact</h3>
<ul class="nav nav-light flex-md-column flex-sm-row flex-column">
<li class="mb-2 nav-item">
<a
href="tel:0749219576"
class="p-0 nav-link me-md-0 me-sm-4 fw-normal text-nowrap"
>
<i class="ci-iphone me-2"></i>
07 49 21 95 76
</a>
</li>
<li class="mb-2 nav-item">
<a
href="mailto:[email protected]"
class="p-0 nav-link me-md-0 me-sm-4 fw-normal text-nowrap"
>
<i class="ci-chat me-2"></i>
</a>
</li>
<li class="mb-2 nav-item">
<a
href="https://g.page/r/CQz10V7z7qPREAI/review"
class="p-0 nav-link me-md-0 me-sm-4 fw-normal text-nowrap"
>
<i class="ci-star me-2"></i>
Avis Google
</a>
</li>
</ul>
</div>
<div
class="order-4 mb-4 col-lg-3 col-md-4 col-sm-6 order-lg-5 order-sm-2 mb-sm-0"
>
<a
href="https://www.facebook.com/toucontfe/"
class="mb-2 btn-social me-1 mt-md-0 mt-sm-1"
>
<i class="ci-facebook"></i>
</a>
<a
href="https://www.instagram.com/toucontfe/"
class="mb-2 btn-social me-1 mt-md-0 mt-sm-1"
>
<i class="ci-instagram"></i>
</a>
<a
href="https://goo.gl/maps/i6fcF95k4dDU9dVL8"
class="mb-1 btn-social mt-md-0 mt-sm-1"
>
<i class="ci-google"></i>
</a>
<a
href="https://www.youtube.com/@Impro-TouContFe"
class="mb-1 btn-social mt-md-0 mt-sm-1"
>
<i class="ci-youtube"></i>
</a>
</div>
</div>
</div>
<div>
<div class="container py-2">
<div
class="py-1 d-flex align-items-sm-center justify-content-between"
>
<div class="fs-xs text-light">
<span class="mb-1 d-sm-inline d-block">
<span class="fs-sm">© </span>
Tous droits réservés.
</span>
</div>
</div>
</div>
</div>
</footer>
<!-- Vendor scripts: js libraries and plugins-->
<script src="./assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/vendor/smooth-scroll/dist/smooth-scroll.polyfills.min.js"></script>
<script src="./assets/vendor/simplebar/dist/simplebar.min.js"></script>
<!-- Main theme script-->
<script src="./assets/js/theme.min.js"></script>
</body>
</html>