-
Notifications
You must be signed in to change notification settings - Fork 9
/
sponsors.php
executable file
·141 lines (131 loc) · 5.67 KB
/
sponsors.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<?php // The header includes the head tag and start of body
require "includes/head.php";
?>
<meta property="og:title" content="<?php echo $META['shortName'];?> sponsors"/>
<meta name="twitter:title" content="<?php echo $META['shortName'];?> sponsors"/>
<title>
<?php echo $META['shortName'];?> Sponsors
</title>
</head>
<body>
<?php require "includes/nav.php"; ?>
<main class="container">
<h2 class="indPageTitle">
Sponsors
</h2>
<p>
<?php echo $META['shortName'];?> relies on sponsors to help ensure
student participation. Please contact the
<a href="contact.php">general chair(s)</a> if your company is
interested in sponsoring this conference.
</p>
<!-- NOTE: below is placeholder content. Please uncomment and replace
with your own content when ready. Make sure to verify that all included
sponsors are current, with appropriate links. We recommend saving sponsor
logos under /images/sponsors for better organization. Remember to change
both the image source path and url, as well as alt text and title on the
image. -->
<!-- <h3 class="pageSubtitle mt-4">
Platinum level
</h3>
<div class="d-flex flex-wrap align-items-center sponsorRows">
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/ethereumFoundation.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/AWS.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
</div>
<hr />
<h3 class="pageSubtitle mt-4">
Gold level
</h3>
<div class="d-flex flex-wrap align-items-center sponsorRows">
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/cloudFlare.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/inpher.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/google.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/jPMorgan.jpg" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/nsf.gif" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
</div>
<hr />
<h3 class="pageSubtitle mt-4">
Silver level
</h3>
<div class="d-flex flex-wrap align-items-center sponsorRows">
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/nucypher.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/QEDit.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/mozilla.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/iotex.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/ibm.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/auditchain.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/protocolLabs.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/poa.jpg" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
<div class="sponsorLogoBox justify-content-between">
<a href="https://kaymckelly.com" target="_blank">
<img src="images/sponsors/iohk.png" alt="NAME" title="NAME" class="sponsorPageLogo">
</a>
</div>
</div> -->
</main>
<?php include "includes/footer.php"; ?>
</body>
</html>