-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar.html
81 lines (79 loc) · 2.75 KB
/
calendar.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-DWGS6L1T5V"
></script>
<script src="./scripts/analytics.js"></script>
<!-- Theme Made By www.w3schools.com -->
<title>Bats of Cyprus - Calendar</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato"
rel="stylesheet"
type="text/css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link
rel="icon"
href="https://suuf.github.io/bats-cyprus/assets/bats_cyprus.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/calendar.css" />
<script src="./components/header-secondary.js"></script>
<script src="./components/footer.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
<script src="./scripts/calendar.js"></script>
<meta name="keywords" content="bats, chiroptera, cyprus" />
<meta
name="description"
content="Information, activities, and raising awareness about bats in Cyprus"
/>
<meta
property="og:image"
content="https://suuf.github.io/bats-cyprus/assets/bats_cyprus_og_img.jpeg"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:title" content="Bats of Cyprus - Calendar" />
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<header-secondary-component></header-secondary-component>
<div class="jumbotron text-center">
<h1>Calendar</h1>
</div>
<!-- Container (Calendar Section) -->
<div id="calendar-page" class="container-fluid">
<div class="row">
<div class="cal-modal-container">
<div class="cal-modal">
<h3>No Upcoming Events ¯\_(ツ)_/¯</h3>
<div id="calendar">
<div class="placeholder"></div>
<div class="calendar-events"></div>
</div>
</div>
</div>
</div>
</div>
<footer-component></footer-component>
</body>
</html>