-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcity.html
111 lines (97 loc) · 3.42 KB
/
city.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
<!DOCTYPE html>
<html lang="en" class="city-html-body">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<!-- you can't delete the next 2 stylesheet from cloudfare. We need them in order to have the icons apearing-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="src/city.css" />
<link rel="stylesheet" href="src/header.css" />
<link rel="stylesheet" href="src/style.css" />
<link rel="stylesheet" href="src/footer.css" />
<title>MateMe - City</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- <link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/> -->
<!-- Déclaration of the global variables and initialisation of them (see: https://www.py4u.net/discuss/275309)-->
<script type='text/javascript' >
let cityList = [];
let eventList = [];
</script>
<script src="src/globalVar.js"></script>
</head>
<!-- Start of the body part -->
<body class="city-body">
<div class="container">
<header id="navBar-header" class="nav-header">
<img
id="avatar"
src="https://images.unsplash.com/photo-1540331547168-8b63109225b7"
/>
<div class="brandName">
<a href="index.html">MateMe</a>
</div>
<nav id="dropdown-menu">
<button id="menu-btn">≡</button>
<ul id="menu" class="menu-off">
<li class="menu-list">
<a href="index.html" class="nav-link-header">Home</a>
</li>
<li class="menu-list">
<a href="createevent.html" class="nav-link-header">Create events</a>
</li>
<li class="menu-list">
<a href="contact-us.html" class="nav-link-header">Contact</a>
</li>
</ul>
</nav>
</header>
<h2 class="city-h2">Paris</h2>
<!--Josh: to center events-->
<div id="event-list">
<!-- template of event box -->
<!-- <section class="event1">
<div class="part1">
<h3 class="city-h3">Boardgame night</h3>
<div>
<span class="where1">
<i style="font-size: 24px;" class="fa"></i>
<a class="a-city" href="http://lenid-coconludique.com/"
>LE NID - Cocon Ludique</a
>
</span>
</div>
</div>
<div class="part2">
<a href="event.html"><button class="buttonevent1">Join!</button></a>
<p class="date">
<i style="font-size: 24px;" class="fa"></i> 03.10.2021 / 6pm
</p>
</div>
</section> -->
</div>
</div>
<footer class="city-page-footer">
<a href="contact-us.html" class="contact-footer">Contact us</a>
<p class="copyright">Copyright © 2021 WCD. All right reserved</p>
</footer>
<script src="src/city.js"></script>
<script src="src/header.js"></script>
</body>
</html>