-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathevents.php
More file actions
47 lines (45 loc) · 1.69 KB
/
Copy pathevents.php
File metadata and controls
47 lines (45 loc) · 1.69 KB
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
<?php
require('template/top.php');
head('Events Calendar', true);
?>
<style>
@media (min-width: 480px) and (max-width: 768px) {
.col-sm-12 {
width:100%;
}
}
.calendarFix {
border: 0;
width: 100%;
height: 90vh;
}
</style>
<main class="page-content">
<section class="breadcrumb-classic">
<div class="rd-parallax">
<div data-speed="0.25" data-type="media" data-url="/images/headers/events.jpg" class="rd-parallax-layer"></div>
<div data-speed="0" data-type="html" class="rd-parallax-layer section-top-75 section-md-top-150 section-lg-top-260">
<div class="shell">
<ul class="list-breadcrumb">
<li><a href="/">Home</a></li>
<li>Events</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section-25 section-md-50 section-lg-75">
<h1 class="text-center">Events Calendar</h1>
<div class="text-center">For the most up-to-date information please <a href="/discord">join our Discord</a>.</div>
<br>
<div class="shell text-sm-left">
<div class="range text-center">
<div class="col-sm-12">
<iframe src="https://calendar.google.com/calendar/embed?src=untroboticsclub%40gmail.com&ctz=America%2FChicago" class="calendarFix" style="border: 0" height="600"></iframe>
</div>
</div>
</div>
</section>
</main>
<?php
footer();