-
Notifications
You must be signed in to change notification settings - Fork 2
/
donate.html
115 lines (102 loc) · 5.2 KB
/
donate.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
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>CITRIS and the Banatao Institute at UC Merced</title>
<link rel="icon" href="images/favicon.png">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body class="homepage">
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<div class="logo container">
<div>
<h1 id="logo">Ways to Partner</h1>
</div>
</div>
</header>
<!-- NAVIGATION: Controlled by HTML snippet in snippets/nav.html -->
<nav id="nav"></nav>
<div id="main-wrapper">
<div id="main" class="container">
<div class="row">
<div class="12u">
<div class="content">
<article class="box page-content" style="text-align: center;">
<header>
<h2>Get Involved with CITRIS</h2>
</header>
<section>
<span class="image" >
<img src="images/projects/FLY CITRIS.png"></img>
</span>
<br>
<br>
<br>
<p>
We welcome new connections with community, industry, and academic partners. Reach out to <br>Contact CITRIS (<a
href="mailto:citris@ucmerced.edu">citris@ucmerced.edu</a>) with any
to explore ways to partner on research, education, outreach, and workforce development.
</p>
<p>To support our ongoing projects, you can make a donation at the link below. Thank you! </p>
<a href="https://securelb.imodules.com/s/1650/index.aspx?sid=1650&gid=1&pgid=474&dids=166&bledit=1 " target ="__blank"
style="color:white;" class="button">Donate
</a>
</section>
<h2>Thank you to our Sponsors for supporting CITRIS:</h2>
<br>
<section id="sponsors">
</section>
</article>
</div>
</div>
</div>
</div>
<!-- FOOTER: Controlled by HTML snippet in snippets/footer.html-->
<div id="footer"></div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/jquery.csv.min.js"></script>
<script src="assets/js/skel-viewport.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
<script>
$(function () {
$("#nav").load("snippets/nav.html"); /*Navigation: Controlled by HTML snippet in snippets/nav.html*/
$("#navPanel").load("snippets/nav.html"); /*Navigation: Controlled by HTML snippet in snippets/nav.html*/
$("#footer").load("snippets/footer.html"); /*FOOTER: Controlled by HTML snippet in snippets/footer.html*/
$.get("/sponsors.csv").then(function (text, status, xhr) {
var data = $.csv.toObjects(text);
for (var i = 0; i < data.length; i++) {
switch (data[i].ID) {
case "HEADER":
$("#sponsors").append(
$.parseHTML(
'<br><br><hr>'
));
break;
default:
$("#sponsors").append(
$.parseHTML(
'<div style="display:inline-block;width:20%;padding:4px;vertical-align:top;">' +
'<a href="' + data[i].LINK + '" style="text-decoration: none">' +
'<img class="image featured" src="images/Sponsors/' + data[i].ID + '.png" alt="" />' +
'</a>' +
'</div>'
));
break;
}
}
});
});
</script>
</body>
</html>