-
Notifications
You must be signed in to change notification settings - Fork 2
/
conferences.php
96 lines (67 loc) · 2.59 KB
/
conferences.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset = "utf-8">
<title>RIN Homepage</title>
<!-- Importing relevant stylesheets -->
<link href="_css/atc-style-button-icon.css" rel="stylesheet" type="text/css">
<link href="_css/atc-style-menu-wb.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="_css/styles.css">
<link rel="stylesheet" type="text/css" href="_css/conferences.css">
<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://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
</head>
<body>
<!--script for calendar function-->
<script type="text/javascript">(function () {
if (window.addtocalendar)if(typeof window.addtocalendar.start == "function")return;
if (window.ifaddtocalendar == undefined) { window.ifaddtocalendar = 1;
var d = document, s = d.createElement('script'), g = 'getElementsByTagName';
s.type = 'text/javascript';s.charset = 'UTF-8';s.async = true;
s.src = ('https:' == window.location.protocol ? 'https' : 'http')+'://addtocalendar.com/atc/1.5/atc.min.js';
var h = d[g]('body')[0];h.appendChild(s); }})();
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB9YAjl-Zpvqyr6RqQFW9_18HKnelIFXXA&callback=initMap">
</script>
<div id="container">
<div id="header">
<header role = "banner">
<!--Banner -->
<?php
$subtitle = "Conferences";
include('_php/banner.php');
?>
<!--Search bar-->
<?php include('_php/showSearch.php'); ?>
<!--Event navigation-->
<?php include('_php/navbar.php') ?>
</header>
</div>
<div id="body">
<main role = "main">
<!--Event details-->
<!--CONFERENCES TAB CONTENT-->
<section id = "conferences">
<?php include('showConferences.php'); ?>
</section>
</main>
</div>
<div id="footer">
<!--Footer-->
<footer id = "pageFooter">
<ul id = "footerNav">
<li class="footerLink"><a href="help.php"><div class="linkText">Terms and Conditions</div></a></li>
<li class="footerLink"><a href ="help.php"><div class="linkText">Contact</div></a></li>
<li class="footerLink"><a href= "help.php"><div class="linkText">Copyright</div></a></li>
</ul>
</footer>
</div>
<!-- Javascript imports -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src = "_scripts/script.js"></script>
<script src = "_scripts/home.js"></script>
</div>
</body>
</html>