-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.php
42 lines (34 loc) · 1.02 KB
/
events.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
<?php
session_start();
require 'navbar.php';
?>
<body onload="getListOfEvents()"></body>
<!-- Banner Area Starts -->
<section class="banner-area banner-area2 contact-bg text-center">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>
<i>
<?php
echo getTranslate("Découvrez les évènements près de chez vous", $tabLang, $setLanguage);
?>
</i>
</h1>
</div>
</div>
</div>
</section>
<!-- Banner Area End -->
<!-- Food Area starts -->
<section class="update-area section-padding">
<div class="container">
<div class="row" id="containerToEvents">
</div>
</div>
</section>
<script src="scripts/scripts.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDr_vOUs3BJrToO67yuX8dmTYvr8qCbWB8&callback=calculDistance">
</script>
<?php include "footer.php"; ?>