-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.php
91 lines (82 loc) · 3.58 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
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
<?php include 'includes/head.php' ?>
<body>
<?php
require_once 'config.php';
include 'includes/navbar.php';
include 'includes/setup.php';
?>
<div id='banner_wrapper' class='section_wrapper'>
<!-- Image adapted from http://www.icfsne.com/2016/home -->
<img src='images/banner.jpg' alt='banner'>
</div>
<?php
include 'includes/login.php';
?>
<div id='events_dummy_wrapper' class='section_wrapper'>
<h2>Check out our calendar or view relevant
information from any of our partner companies!</h2>
<iframe src="https://calendar.google.com/calendar/embed?src=cornell.edu_0nicem4o3b27rf2hm9fdks8oj4%40group.calendar.google.com&ctz=America/New_York"
style="border: 0" width="80%" height="600" frameborder="0" scrolling="no">
</iframe>
</div>
<div id="companies_wrapper" class='company_wapper'>
<div class='table_row'>
<div class='prof_wrapper'>
<a href = 'http://www.mars.com/global/science-and-innovation/science/food-safety'>
<img src = 'images/Mars_Grey.png' alt = 'Mars'>
<img src = 'images/Mars_Orange.png' alt = 'Mars' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'http://www.mondelezinternational.com/well-being'>
<img src='images/mondelez_grey.jpg' alt='Mondelez'>
<img src='images/mondelez_orange.jpg' alt='Mondelez' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'https://www.hersheys.com/en_us/simple-ingredients.html'>
<img src='images/hershey_grey.jpg' alt='Hershey's'>
<img src='images/hershey_orange.jpg' alt='Hershey's' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'http://www.pepsico.com/live/content/type/story'>
<img src='images/pepsico_grey.jpg' alt='PepsiCo'>
<img src='images/pepsico_orange.jpg' alt='PepsiCo' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'http://www.kraftheinzcompany.com/sustainability.html'>
<img src='images/Kraft_Grey.png' alt='KraftHeinz'>
<img src='images/Kraft_Orange.png' alt='KraftHeinz' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'http://www.anheuser-busch.com/newsroom.html'>
<img src='images/Busch_grey.jpg' alt='Anheuser Busch'>
<img src='images/Busch_orange.jpg' alt='Anheuser Busch' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'https://www.walmart.com/store/5240/whats-new'>
<img src='images/Walmart_Grey.png' alt='Walmart'>
<img src='images/Walmart_Orange.png' alt='Walmart' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'http://ithacabeer.com/news/'>
<img src='images/Beer_grey.png' alt='Ithaca Beer Co'>
<img src='images/Beer_orange.png' alt='Ithaca Beer Co' class = 'hide'>
</a>
</div>
<div class='prof_wrapper'>
<a href = 'https://ithacahummus.com/press/'>
<img src='images/hummus_grey.png' alt='Ithaca Hummus'>
<img src='images/hummus_orange.png' alt='Ithaca Hummus' class = 'hide'>
</a>
</div>
</div>
</div>
<?php include 'includes/footer.php'; ?>
</body>
</html>