-
Notifications
You must be signed in to change notification settings - Fork 1
/
evenements.php
103 lines (96 loc) · 5.24 KB
/
evenements.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="64x64" href="images/favicon.png">
<title>BPM Club Sono TMSP</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- This page CSS -->
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<link href="css/index-landingpage/landing-page.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Animate on Scroll -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<body class="">
<!-- ============================================================== -->
<!-- Main wrapper - style you can find in pages.scss -->
<!-- ============================================================== -->
<div id="main-wrapper">
<?php include("components/header.php"); ?>
<!-- ============================================================== -->
<!-- Page wrapper -->
<!-- ============================================================== -->
<div class="page-wrapper">
<!-- ============================================================== -->
<!-- Container fluid -->
<!-- ============================================================== -->
<div class="container-fluid">
<!-- ============================================================== -->
<!-- Static Slider 10 -->
<!-- ============================================================== -->
<div class="static-slider-head" style="background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/platines.jpg'); background-size: cover;">
<div class="container">
<!-- Row -->
<div class="row justify-content-center">
<!-- Column -->
<div class="col-lg-8 col-md-6 align-self-center text-center" data-aos="fade-up" data-aos-duration="1200">
<h1 class="title">Les évènements</h1>
<h4 class="subtitle font-light">Découvrez les évènements que nous organisons.
</h4>
<a href="#learn-more" class="btn btn-outline-light m-r-20 btn-md m-t-30 font-14">En savoir plus</a>
<a href="/#contact" class="btn btn-md m-t-30 btn-danger-gradiant font-14">Nous contacter</a>
</div>
<!-- Column -->
</div>
</div>
</div>
<!-- ============================================================== -->
<!-- End Static Slider 10 -->
<!-- ============================================================== -->
<div class="container">
<div class="row">
<div class="col-md-10 mt-5">
<div class="card card-shadow">
<div class="card-body">
<h3 class="card-title">Pas d'évènements à venir</h3>
<p class="card-text">Contactez-nous pour organiser votre évènement</p>
<a href="/#contact" class="btn btn-success">Nous contacter</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ============================================================== -->
<!-- End Container fluid -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Back to top -->
<!-- ============================================================== -->
<a class="bt-top btn btn-circle btn-lg btn-info" href="#top"><i class="ti-arrow-up"></i></a>
</div>
<!-- ============================================================== -->
<!-- End Page wrapper -->
<!-- ============================================================== -->
<?php include("components/footer.php"); ?>
</div>
<!-- ============================================================== -->
<!-- End Wrapper -->
<!-- ============================================================== -->
<?php include("components/scripts.php"); ?>
</body>
</html>